Update README

This commit is contained in:
Mitchell Hashimoto 2014-08-01 11:20:48 -07:00
parent 038acdae90
commit e9b8055f58
2 changed files with 10 additions and 22 deletions

View File

@ -34,26 +34,14 @@ of the syntax and grammar are listed here.
* Boolean values: `true`, `false`, `on`, `off`, `yes`, `no`. * Boolean values: `true`, `false`, `on`, `off`, `yes`, `no`.
* Arrays can be made by wrapping it in `[]`. Example: * Arrays can be made by wrapping it in `[]`. Example:
`["foo", "bar", 42]`. `["foo", "bar", 42]`. Arrays can contain primitives
and other arrays, but cannot contain objects. Objects must
use the block syntax shown below.
* Objects (also known as maps) can be made with '{}'. Example: Objects and nested objects are created using the structure shown below:
'{ foo = "bar" }'
In addition to these basics, the syntax supports hierarchies of
sections. These sections are actually syntactic sugar over lists of
maps, but visually end up looking much better from a configuration
standpoint. For example, these are nearly equivalent:
``` ```
variable "ami" { variable "ami" {
description = "the AMI to use" description = "the AMI to use"
} }
# is equal to:
variable = [{
"ami": {
"description": "the AMI to use",
}
}]
``` ```