Files
2023-09-20 15:16:53 +03:00

8 lines
99 B
HCL

variable "list" {
type = list(string)
}
resource "aws_instance" "bar" {
count = var.list[0]
}