opentofu/internal/tofu/testdata/apply-multi-var-order/main.tf
2023-09-20 15:16:53 +03:00

13 lines
203 B
HCL

variable "num" {
default = 15
}
resource "aws_instance" "bar" {
count = "${var.num}"
foo = "index-${count.index}"
}
output "should-be-11" {
value = "${element(aws_instance.bar.*.foo, 11)}"
}