From dd51491aa1876f64149921d4eb520c1c542feaa4 Mon Sep 17 00:00:00 2001 From: MooYeol Prescott Lee Date: Thu, 29 Dec 2016 01:39:16 +0900 Subject: [PATCH] website: Fix broken markdown style on 'lists' section of variables page (#10944) --- website/source/intro/getting-started/variables.html.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/source/intro/getting-started/variables.html.md b/website/source/intro/getting-started/variables.html.md index 1a1f022a8..7e32a72dc 100644 --- a/website/source/intro/getting-started/variables.html.md +++ b/website/source/intro/getting-started/variables.html.md @@ -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" ] ```