Files
opentf/internal/tofu/testdata/plan-modules/main.tf
2023-09-20 15:16:53 +03:00

12 lines
162 B
HCL

module "child" {
source = "./child"
}
resource "aws_instance" "foo" {
num = "2"
}
resource "aws_instance" "bar" {
foo = "${aws_instance.foo.num}"
}