From 184e3ce8ad7995b083d13fc4e77e737dc9b564c5 Mon Sep 17 00:00:00 2001 From: Jamie Starke Date: Sun, 23 Oct 2016 19:13:45 -0700 Subject: [PATCH] Fixed the parameters structure Removed the `=` from the parameters structure, and changed the `VPCCidrParameter` to match `VPCCidr` in the Cloudformation template. --- .../docs/providers/aws/r/cloudformation_stack.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/providers/aws/r/cloudformation_stack.html.markdown b/website/source/docs/providers/aws/r/cloudformation_stack.html.markdown index f951f2d74a..1813c2849a 100644 --- a/website/source/docs/providers/aws/r/cloudformation_stack.html.markdown +++ b/website/source/docs/providers/aws/r/cloudformation_stack.html.markdown @@ -15,8 +15,8 @@ Provides a CloudFormation Stack resource. ``` resource "aws_cloudformation_stack" "network" { name = "networking-stack" - parameters = { - VPCCidrParameter = "10.0.0.0/16" + parameters { + VPCCidr = "10.0.0.0/16" } template_body = <