Merge pull request #762 from atlassian/fix_count_example

example: fix invalid mixing of hcl and json
This commit is contained in:
Mitchell Hashimoto 2015-01-08 16:45:04 -08:00
commit aa82c10e39
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"
}
}