opentofu/terraform/test-fixtures/apply-ref-count/main.tf
2016-08-31 11:49:25 -07:00

8 lines
121 B
HCL

resource "aws_instance" "foo" {
count = 3
}
resource "aws_instance" "bar" {
foo = "${aws_instance.foo.count}"
}