github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/terraform/test-fixtures/issue-9549/mod/main.tf (about)

     1  resource "template_file" "example" {
     2    template = "template text"
     3  }
     4  
     5  output "base_config" {
     6    value = {
     7      base_template = "${template_file.example.rendered}"
     8  
     9      # without this we fail with no entries
    10      extra = "value"
    11    }
    12  }