Skip to content

Commit

Permalink
array of json
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcalalang committed Oct 6, 2023
1 parent b406bec commit 2e6d26c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions kubernetes/terraform/configuration/helm-releases.tf
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,14 @@ resource "helm_release" "nginx-plus-ingress" {
}

set {
name = "controller.globalConfiguration.spec.listeners"
value = "[name: tcp-listener\n port: 8888\n protocol: TCP]"
name = "controller.globalConfiguration.spec"
value = {
"listeners" : [{
"name" : "tcp-listener",
"port" : "8888",
"protocol" : "TCP"
}]
}
}

set {
Expand Down

0 comments on commit 2e6d26c

Please sign in to comment.