opentofu/terraform/testdata/plan-destroy-interpolated-count/main.tf
2019-06-30 10:16:15 +02:00

12 lines
161 B
HCL

variable "list" {
default = ["1", "2"]
}
resource "aws_instance" "a" {
count = "${length(var.list)}"
}
output "out" {
value = "${aws_instance.a.*.id}"
}