Skip to content

Commit

Permalink
Add primary_ipv6 parameter to self-managed-node-group
Browse files Browse the repository at this point in the history
  • Loading branch information
jmtsi committed Oct 3, 2024
1 parent 7f219a6 commit 746fad9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/self-managed-node-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,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))
Expand Down

0 comments on commit 746fad9

Please sign in to comment.