github.com/burmuley/terraform@v0.11.12-beta1/config/test-fixtures/output-no-warnings/main.tf (about) 1 resource "test_instance" "foo" { 2 } 3 4 output "foo_id" { 5 value = "${test_instance.foo.id}" 6 } 7 8 resource "test_instance" "bar" { 9 count = 3 10 } 11 12 output "bar_count" { 13 value = "${test_instance.bar.count}" 14 }