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

8 lines
114 B
HCL

resource "aws_instance" "foo" {
count = 3
}
resource "aws_instance" "bar" {
foo = length(aws_instance.foo)
}