Fixed HCL variable declaration
This commit is contained in:
parent
4b8151ec6d
commit
cf390bec3b
|
@ -6,9 +6,9 @@ variable "aws_region" {
|
||||||
# AMI's from http://cloud-images.ubuntu.com/locator/ec2/
|
# AMI's from http://cloud-images.ubuntu.com/locator/ec2/
|
||||||
variable "aws_amis" {
|
variable "aws_amis" {
|
||||||
default = {
|
default = {
|
||||||
"eu-west-1": "ami-b1cf19c6",
|
eu-west-1 = "ami-b1cf19c6"
|
||||||
"us-east-1": "ami-de7ab6b6",
|
us-east-1 = "ami-de7ab6b6"
|
||||||
"us-west-1": "ami-3f75767a",
|
us-west-1 = "ami-3f75767a"
|
||||||
"us-west-2": "ami-21f78e11",
|
us-west-2 = "ami-21f78e11"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue