From f70d15dd3da8879164f214bc594c4192d572c6cb Mon Sep 17 00:00:00 2001 From: George Christou Date: Sat, 18 Feb 2017 22:48:50 +0000 Subject: [PATCH] website/docs: Run `terraform fmt` on code examples (#12075) * docs/vsphere: Fix code block * docs: Convert `...` to `# ...` to allow `terraform fmt`ing * docs: Trim trailing whitespace * docs: First-pass run of `terraform fmt` on code examples --- index.html.markdown | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/index.html.markdown b/index.html.markdown index 815c136223..3fca182572 100644 --- a/index.html.markdown +++ b/index.html.markdown @@ -18,14 +18,15 @@ Use the navigation to the left to read about the available data sources. ``` # Shared infrastructure state stored in Atlas data "terraform_remote_state" "vpc" { - backend = "atlas" - config { - name = "hashicorp/vpc-prod" - } + backend = "atlas" + + config { + name = "hashicorp/vpc-prod" + } } resource "aws_instance" "foo" { - # ... - subnet_id = "${data.terraform_remote_state.vpc.subnet_id}" + # ... + subnet_id = "${data.terraform_remote_state.vpc.subnet_id}" } ```