Fixed the parameters structure

Removed the `=` from the parameters structure, and changed the `VPCCidrParameter` to match `VPCCidr` in the Cloudformation template.
This commit is contained in:
Jamie Starke 2016-10-23 19:13:45 -07:00 committed by GitHub
parent 3ba46b2a9b
commit 184e3ce8ad

View File

@ -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 = <<STACK
{