fix invalid mixing of hcl and json

This commit is contained in:
Otto Jongerius 2015-01-09 11:43:29 +11:00
parent 17201130ff
commit fbfbccb895
1 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@ variable "aws_region" {
# Ubuntu Precise 12.04 LTS (x64)
variable "aws_amis" {
default = {
"eu-west-1": "ami-b1cf19c6",
"us-east-1": "ami-de7ab6b6",
"us-west-1": "ami-3f75767a",
"us-west-2": "ami-21f78e11"
"eu-west-1" = "ami-b1cf19c6"
"us-east-1" = "ami-de7ab6b6"
"us-west-1" = "ami-3f75767a"
"us-west-2" = "ami-21f78e11"
}
}