github.com/davebizus/terraform-main@v0.11.12-beta1/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  }