From e1bb8b66617299c6d9972139b1f9355322e7801e Mon Sep 17 00:00:00 2001 From: Anton Chernev Date: Tue, 16 Jul 2024 00:58:23 +0100 Subject: [PATCH] feat: Pass the `primary_ipv6` argument to the AWS provider. (#3098) Co-authored-by: Bryant Biggs --- modules/eks-managed-node-group/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/eks-managed-node-group/main.tf b/modules/eks-managed-node-group/main.tf index 50554ae98b..adaf59cd33 100644 --- a/modules/eks-managed-node-group/main.tf +++ b/modules/eks-managed-node-group/main.tf @@ -268,6 +268,7 @@ resource "aws_launch_template" "this" { ipv6_prefixes = try(network_interfaces.value.ipv6_prefixes, []) network_card_index = try(network_interfaces.value.network_card_index, null) network_interface_id = try(network_interfaces.value.network_interface_id, null) + primary_ipv6 = try(network_interfaces.value.primary_ipv6, null) private_ip_address = try(network_interfaces.value.private_ip_address, null) # Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570 security_groups = compact(concat(try(network_interfaces.value.security_groups, []), local.security_group_ids))