website: Fix broken markdown style on 'lists' section of variables page (#10944)
This commit is contained in:
parent
acacf45f27
commit
dd51491aa1
|
@ -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" ]
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue