website: update docs for new mappings format

This commit is contained in:
Mitchell Hashimoto 2014-08-30 16:20:45 -07:00
parent 28a2e7b979
commit 3cf4f57fe8
2 changed files with 5 additions and 5 deletions

View File

@ -78,8 +78,8 @@ An example:
``` ```
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"
} }
} }
``` ```
@ -105,7 +105,7 @@ where `DEFAULT` is:
VALUE VALUE
{ {
KEY: VALUE, KEY = VALUE
... ...
} }
``` ```

View File

@ -96,8 +96,8 @@ support for the "us-west-2" region as well:
``` ```
variable "amis" { variable "amis" {
default = { default = {
"us-east-1": "ami-aa7ab6c2", us-east-1 = "ami-aa7ab6c2"
"us-west-2": "ami-23f78e13", us-west-2 = "ami-23f78e13"
} }
} }
``` ```