fix: revert version 6 native (#103)
Signed-off-by: matttrach <matt.trachier@suse.com>
This commit is contained in:
parent
99a45f647c
commit
f2ee57f6eb
|
|
@ -23,10 +23,10 @@ data "aws_subnet" "selected" {
|
|||
resource "aws_subnet" "created" {
|
||||
count = local.create
|
||||
vpc_id = local.vpc_id
|
||||
cidr_block = local.ipv4_cidr
|
||||
cidr_block = local.ipv4_cidr # this is necessary to create the load balancer, even in ipv6 only mode
|
||||
ipv6_cidr_block = local.ipv6_cidr
|
||||
enable_resource_name_dns_aaaa_record_on_launch = (local.type == "ipv6" ? true : false)
|
||||
assign_ipv6_address_on_creation = (local.ipv6ds == 1 ? true : false)
|
||||
ipv6_native = (local.type == "ipv6" ? true : false)
|
||||
availability_zone = local.availability_zone
|
||||
map_public_ip_on_launch = local.public
|
||||
tags = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue