github.com/gettyimages/terraform@v0.7.6-0.20161219132226-dc052c5707a3/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  }