We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
primary_ipv6
1 parent f56004d commit e1bb8b6Copy full SHA for e1bb8b6
modules/eks-managed-node-group/main.tf
@@ -268,6 +268,7 @@ resource "aws_launch_template" "this" {
268
ipv6_prefixes = try(network_interfaces.value.ipv6_prefixes, [])
269
network_card_index = try(network_interfaces.value.network_card_index, null)
270
network_interface_id = try(network_interfaces.value.network_interface_id, null)
271
+ primary_ipv6 = try(network_interfaces.value.primary_ipv6, null)
272
private_ip_address = try(network_interfaces.value.private_ip_address, null)
273
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
274
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), local.security_group_ids))
0 commit comments