Skip to content

Commit

Permalink
feat: Add support for primary_ipv6 in launch template (#283)
Browse files Browse the repository at this point in the history
Co-authored-by: Björn Ehrby <bjorn.ehrby@internetstiftelsen.se>
  • Loading branch information
PolaricEntropy and Björn Ehrby authored Feb 14, 2025
1 parent 72561e6 commit 061dce6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ resource "aws_launch_template" "this" {
ipv6_address_count = try(network_interfaces.value.ipv6_address_count, null)
network_interface_id = try(network_interfaces.value.network_interface_id, null)
network_card_index = try(network_interfaces.value.network_card_index, 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, []), var.security_groups))
Expand Down

0 comments on commit 061dce6

Please sign in to comment.