github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/configs/configupgrade/testdata/valid/heredoc-sameline/want/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=true
     6  EOF
     7  
     8  }
     9  
    10  output "local" {
    11    value = local.cert_options
    12  }