Skip to content

Commit

Permalink
fixing a bug, can't quote the list of CIDRs
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyblasczyk committed Dec 2, 2023
1 parent 81d4616 commit 416849a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ module "wandb" {
module.app_eks,
module.redis,
]

operator_chart_version = "1.1.0"
controller_image_tag = "1.10.1"

Expand Down Expand Up @@ -232,7 +231,9 @@ module "wandb" {

annotations = {
"alb.ingress.kubernetes.io/load-balancer-name" = "${var.namespace}-alb-k8s"
"alb.ingress.kubernetes.io/inbound-cidrs" = "0.0.0.0/0"
"alb.ingress.kubernetes.io/inbound-cidrs" = <<-EOF
${join("\\,", var.allowed_inbound_cidr)}
EOF
"alb.ingress.kubernetes.io/scheme" = "internet-facing"
"alb.ingress.kubernetes.io/target-type" = "ip"
"alb.ingress.kubernetes.io/listen-ports" = "[{\\\"HTTPS\\\": 443}]"
Expand Down

0 comments on commit 416849a

Please sign in to comment.