blob: cbd4e35e363e1b4c931fe937ce5cc5febaf0b98b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
variable "access_key" {}
variable "secret_key" {}
variable "region" {
default = "us-east-1"
}
variable "amis" {
type = "map"
default = {
"us-east-1" = "ami-b374d5a5"
"us-east-2" = "ami-4b32be2b"
}
}
|