Skip to content

Commit

Permalink
fix: Need the global redis helm values to not be null even when disab…
Browse files Browse the repository at this point in the history
…led (#131)
  • Loading branch information
danielpanzella committed Jun 5, 2024
1 parent f8c94a0 commit e8c4602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ module "wandb" {
ttlInSeconds = 604800
caCertPath = "/etc/ssl/certs/redis_ca.pem"
}
} : null
} : {}
}

app = {
Expand All @@ -242,7 +242,7 @@ module "wandb" {
}
}

redis = { install = false }
redis = { install = !var.create_redis }
mysql = { install = false }

weave = {
Expand Down

0 comments on commit e8c4602

Please sign in to comment.