Skip to content

Commit e1bb8b6

Browse files
feat: Pass the primary_ipv6 argument to the AWS provider. (#3098)
Co-authored-by: Bryant Biggs <[email protected]>
1 parent f56004d commit e1bb8b6

File tree

1 file changed

+1
-0
lines changed
  • modules/eks-managed-node-group

1 file changed

+1
-0
lines changed

modules/eks-managed-node-group/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ resource "aws_launch_template" "this" {
268268
ipv6_prefixes = try(network_interfaces.value.ipv6_prefixes, [])
269269
network_card_index = try(network_interfaces.value.network_card_index, null)
270270
network_interface_id = try(network_interfaces.value.network_interface_id, null)
271+
primary_ipv6 = try(network_interfaces.value.primary_ipv6, null)
271272
private_ip_address = try(network_interfaces.value.private_ip_address, null)
272273
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
273274
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), local.security_group_ids))

0 commit comments

Comments
 (0)