Hello,
I’m using terraform-aws-eks
and in the self-managed nodegroup section example in terraform-aws-eks/main.tf at master · terraform-aws-modules/terraform-aws-eks · GitHub
it was one line string
afraid if multiline string like below is failed :
...
bootstrap_extra_args = <<-EOT
--container-runtime containerd \
--kubelet-extra-args '--node-labels=node.kubernetes.io/lifecycle=on-demand \
--register-with-taints=cluster-core-tools=true:NoExecute \
--node-labels=nodegroup-name=nodegroup-xxx, \
project=yyy'
EOT
...
is there a way to convert multiline string to one line string in the terraform ?