opentofu/internal/tofu/testdata/plan-targeted/main.tf
2023-09-20 15:16:53 +03:00

13 lines
163 B
HCL

resource "aws_instance" "foo" {
num = "2"
}
resource "aws_instance" "bar" {
foo = aws_instance.foo.num
}
module "mod" {
source = "./mod"
count = 1
}