mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-04 14:12:53 -04:00
7 lines
99 B
HCL
7 lines
99 B
HCL
variable "list" {
|
|
type = list(string)
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
count = var.list[0]
|
|
}
|