github.com/hs0210/hashicorp-terraform@v0.11.12-beta1/configs/test-fixtures/valid-files/outputs.tf (about) 1 2 output "foo" { 3 value = "hello" 4 } 5 6 output "bar" { 7 value = local.bar 8 } 9 10 output "baz" { 11 value = "ssshhhhhhh" 12 sensitive = true 13 } 14 15 output "cheeze_pizza" { 16 description = "Nothing special" 17 value = "🍕" 18 } 19 20 output "π" { 21 value = 3.14159265359 22 depends_on = [ 23 pizza.cheese, 24 ] 25 }