terraform/internal/command/testdata/show-json/provider-aliasing-conflict/main.tf

12 lines
135 B
HCL

provider "test" {
region = "somewhere"
}
resource "test_instance" "test" {
ami = "foo"
}
module "child" {
source = "./child"
}