docs(flatten): Fix typos (#24492)

pull/24630/head
Eduard Tamsa 6 years ago committed by GitHub
parent 89bef596fc
commit 534ba630e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
}
```

Loading…
Cancel
Save