mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-12 00:16:18 -06:00
12 lines
161 B
HCL
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}"
|
|
}
|