Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fef6555

Browse files
authoredOct 3, 2024··
fix: Add primary_ipv6 parameter to self-managed-node-group (#3169)
Add primary_ipv6 parameter to self-managed-node-group
1 parent 7f219a6 commit fef6555

File tree

1 file changed

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

1 file changed

+1
-0
lines changed
 

‎modules/self-managed-node-group/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ resource "aws_launch_template" "this" {
417417
ipv6_prefixes = try(network_interfaces.value.ipv6_prefixes, [])
418418
network_card_index = try(network_interfaces.value.network_card_index, null)
419419
network_interface_id = try(network_interfaces.value.network_interface_id, null)
420+
primary_ipv6 = try(network_interfaces.value.primary_ipv6, null)
420421
private_ip_address = try(network_interfaces.value.private_ip_address, null)
421422
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
422423
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), local.security_group_ids))

0 commit comments

Comments
 (0)
Please sign in to comment.