+| <a name="input_subnets"></a> [subnets](#input\_subnets) | (Required) A configuration of subnets to create in the subnet group. Each block of `subnets` as defined below.<br> (Optional) `type` - The type of subnet. Valid values are `DUALSTACK` and `IPV6`. Defaults to `DUALSTACK`.<br> (Optional) `availability_zone` - The availability zone of the subnet. If the value of `availability_zone` and `availability_zone_id` are both not provided, the subnet will be created in random availability zone.<br> (Optional) `availability_zone_id` - The availability zone ID of the subnet. If the value of `availability_zone` and `availability_zone_id` are both not provided, the subnet will be created in random availability zone.<br> (Optional) `ipv4_cidr` - The IPv4 CIDR block for the subnet.<br> (Optional) `ipv6_cidr` - The IPv6 network range for the subnet, in CIDR notation. The subnet size must use a /64 prefix length. | <pre>map(object({<br> type = optional(string, "DUALSTACK")<br><br> availability_zone = optional(string)<br> availability_zone_id = optional(string)<br><br> ipv4_cidr = optional(string)<br> ipv6_cidr = optional(string)<br> }))</pre> | n/a | yes |
0 commit comments