Skip to content

Commit

Permalink
revert merge logic
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyblasczyk committed Jan 10, 2024
1 parent 515b8d8 commit 8dd0f8f
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ locals {
module "app_eks" {
source = "./modules/app_eks"

domain_filter = local.domain_filter
fqdn = local.domain_filter

namespace = var.namespace
kms_key_arn = local.kms_key_arn
Expand Down Expand Up @@ -197,7 +197,7 @@ module "wandb" {
controller_image_tag = "1.10.1"

spec = {
values = merge({
values = {
global = {
host = local.url
license = var.license
Expand Down Expand Up @@ -242,6 +242,12 @@ module "wandb" {
}
}

app = var.enable_operator_alb ? {} : {
extraEnv = {
"GORILLA_GLUE_LIST" = "true"
}
}

mysql = { install = false }
redis = { install = false }

Expand All @@ -251,17 +257,8 @@ module "wandb" {
efs = {
fileSystemId = module.app_eks.efs_id
}

}
}
}, var.enable_operator_alb ? {} :
{
app = {
extraEnv = {
"GORILLA_GLUE_LIST" = "true"
}
}
}
)
}
}
}

0 comments on commit 8dd0f8f

Please sign in to comment.