website: Fix broken markdown style on 'lists' section of variables page (#10944)

This commit is contained in:
MooYeol Prescott Lee 2016-12-29 01:39:16 +09:00 committed by Paul Stack
parent acacf45f27
commit dd51491aa1
1 changed files with 2 additions and 0 deletions

View File

@ -133,6 +133,7 @@ for the variable.
## Lists
Lists are defined either explicitly or implicity
```
# implicitly by using brackets [...]
variable "cidrs" { default = [] }
@ -142,6 +143,7 @@ variable "cidrs" { type = "list" }
```
You can specify lists in a `terraform.tfvars` file:
```
cidrs = [ "10.0.0.0/16", "10.1.0.0/16" ]
```