Skip to content

Commit

Permalink
as heredoc?
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcalalang committed Oct 6, 2023
1 parent de926cb commit 3e401aa
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions kubernetes/terraform/configuration/helm-releases.tf
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,14 @@ resource "helm_release" "nginx-plus-ingress" {

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

set {
Expand Down Expand Up @@ -287,7 +286,7 @@ resource "helm_release" "nginx-plus-ingressLink" {

set {
name = "controller.globalConfiguration.spec"
value = {}
value = "{}"
}

set {
Expand Down

0 comments on commit 3e401aa

Please sign in to comment.