docs(flatten): Fix typos (#24492)

This commit is contained in:
Eduard Tamsa 2020-04-10 05:59:17 -07:00 committed by GitHub
parent 89bef596fc
commit 534ba630e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 5 deletions

View File

@ -51,10 +51,8 @@ For example, consider a module that declares a variable like the following:
variable "networks" {
type = map(object({
cidr_block = string
subnets = map(object({
cidr_block = string
})
})
subnets = map(object({ cidr_block = string }))
}))
}
```
@ -101,7 +99,7 @@ resource "aws_subnet" "example" {
vpc_id = each.value.network_id
availability_zone = each.value.subnet_key
cidr_block = each.value_cidr_block
cidr_block = each.value.cidr_block
}
```