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 72561e6 commit 061dce6Copy full SHA for 061dce6
main.tf
@@ -295,6 +295,7 @@ resource "aws_launch_template" "this" {
295
ipv6_address_count = try(network_interfaces.value.ipv6_address_count, null)
296
network_interface_id = try(network_interfaces.value.network_interface_id, null)
297
network_card_index = try(network_interfaces.value.network_card_index, null)
298
+ primary_ipv6 = try(network_interfaces.value.primary_ipv6, null)
299
private_ip_address = try(network_interfaces.value.private_ip_address, null)
300
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
301
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), var.security_groups))
0 commit comments