mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-16 16:47:20 +01:00
fix: Add primary_ipv6 parameter to self-managed-node-group (#3169)
Add primary_ipv6 parameter to self-managed-node-group
This commit is contained in:
@@ -417,6 +417,7 @@ resource "aws_launch_template" "this" {
|
|||||||
ipv6_prefixes = try(network_interfaces.value.ipv6_prefixes, [])
|
ipv6_prefixes = try(network_interfaces.value.ipv6_prefixes, [])
|
||||||
network_card_index = try(network_interfaces.value.network_card_index, null)
|
network_card_index = try(network_interfaces.value.network_card_index, null)
|
||||||
network_interface_id = try(network_interfaces.value.network_interface_id, 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)
|
private_ip_address = try(network_interfaces.value.private_ip_address, null)
|
||||||
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
|
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
|
||||||
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), local.security_group_ids))
|
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), local.security_group_ids))
|
||||||
|
|||||||
Reference in New Issue
Block a user