Skip to content

Commit

Permalink
fix: Consistent object type for redis
Browse files Browse the repository at this point in the history
  • Loading branch information
adityachoudhari26 committed Jun 5, 2024
1 parent 24c2227 commit 7661e03
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,17 @@ module "wandb" {
ttlInSeconds = 604800
caCertPath = "/etc/ssl/certs/redis_ca.pem"
}
} : {}
} : {
password = ""
host = ""
port = 0
caCert = ""
params = {
tls = false
ttlInSeconds = 0
caCertPath = ""
}
}
}

app = {
Expand All @@ -255,9 +265,9 @@ module "wandb" {
}
serviceAccount = { annotations = { "iam.gke.io/gcp-service-account" = module.service_accounts.monitoring_role } }
} : {
install = false
stackdriver = {}
serviceAccount = {}
install = false
stackdriver = {}
serviceAccount = {}
}

otel = {
Expand Down

0 comments on commit 7661e03

Please sign in to comment.