terraform/configs/configupgrade/test-fixtures/valid/heredoc-sameline/want/heredoc.tf

13 lines
206 B
HCL

locals {
cert_options = <<EOF
--cert-file=/etc/ssl/etcd/server.crt \
--peer-trusted-ca-file=/etc/ssl/etcd/ca.crt \
--peer-client-cert-auth=true
EOF
}
output "local" {
value = local.cert_options
}