opentofu/config/testdata/validate-var-multi-exact-non-slice/main.tf
2019-06-30 10:16:15 +02:00

8 lines
120 B
HCL

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