mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
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:
parent
3ba46b2a9b
commit
184e3ce8ad
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user