github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/internal/command/testdata/show-json-state/modules/foo/main.tf (about) 1 variable "test_var" { 2 default = "foo-var" 3 } 4 5 resource "test_instance" "test" { 6 ami = var.test_var 7 count = 1 8 } 9 10 output "test" { 11 value = var.test_var 12 } 13 14 provider "test" {}