We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
antonbabenko
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
primary_ipv6
1 parent 7f219a6 commit fef6555Copy full SHA for fef6555
modules/self-managed-node-group/main.tf
@@ -417,6 +417,7 @@ resource "aws_launch_template" "this" {
417
ipv6_prefixes = try(network_interfaces.value.ipv6_prefixes, [])
418
network_card_index = try(network_interfaces.value.network_card_index, null)
419
network_interface_id = try(network_interfaces.value.network_interface_id, null)
420
+ primary_ipv6 = try(network_interfaces.value.primary_ipv6, null)
421
private_ip_address = try(network_interfaces.value.private_ip_address, null)
422
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
423
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), local.security_group_ids))
0 commit comments