website: fix syntax of variables

This commit is contained in:
Mitchell Hashimoto 2014-08-28 09:17:27 -07:00
parent bb2edb20fd
commit f7022711c0
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ variable "key" {}
variable "images" { variable "images" {
default = { default = {
"us-east-1": "image-1234", us-east-1 = "image-1234"
"us-west-2": "image-4567", us-west-2 = "image-4567"
} }
} }
``` ```