github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/configs/configupgrade/testdata/valid/heredoc-sameline/input/heredoc.tf (about)

     1  locals {
     2    cert_options = <<EOF
     3  --cert-file=/etc/ssl/etcd/server.crt \
     4    --peer-trusted-ca-file=/etc/ssl/etcd/ca.crt \
     5    --peer-client-cert-auth=trueEOF
     6  }
     7  
     8  output "local" {
     9    value = "${local.cert_options}"
    10  }