Files
opentf/config/testdata/validate-var-multi-func/main.tf
2019-06-30 10:16:15 +02:00

8 lines
132 B
HCL

resource "aws_instance" "foo" {
count = 3
}
resource "aws_instance" "bar" {
foo = "${element(aws_instance.foo.*.id, 0)}"
}