opentofu/terraform/testdata/apply-module/main.tf

12 lines
142 B
Terraform
Raw Normal View History

2014-09-23 19:13:50 -05:00
module "child" {
source = "./child"
}
resource "aws_instance" "foo" {
num = "2"
}
resource "aws_instance" "bar" {
foo = "bar"
}