github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/internal/command/testdata/show-json/modules/foo/main.tf (about)

     1  variable "test_var" {
     2    default = "foo-var"
     3  }
     4  resource "test_instance" "test" {
     5    ami   = var.test_var
     6    count = 3
     7  }
     8  
     9  output "test" {
    10    value = var.test_var
    11  }
    12  
    13  provider "test" {}