mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
8 lines
123 B
Terraform
8 lines
123 B
Terraform
|
variable "ami" {
|
||
|
default = [ "ami", "abc123" ]
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "quotes" {
|
||
|
ami = "${join(\",\", var.ami)}"
|
||
|
}
|