Skip to content

Commit 061dce6

Browse files
PolaricEntropyBjörn Ehrby
and
Björn Ehrby
authored
feat: Add support for primary_ipv6 in launch template (#283)
Co-authored-by: Björn Ehrby <bjorn.ehrby@internetstiftelsen.se>
1 parent 72561e6 commit 061dce6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ resource "aws_launch_template" "this" {
295295
ipv6_address_count = try(network_interfaces.value.ipv6_address_count, null)
296296
network_interface_id = try(network_interfaces.value.network_interface_id, null)
297297
network_card_index = try(network_interfaces.value.network_card_index, null)
298+
primary_ipv6 = try(network_interfaces.value.primary_ipv6, null)
298299
private_ip_address = try(network_interfaces.value.private_ip_address, null)
299300
# Ref: https://github.com/hashicorp/terraform-provider-aws/issues/4570
300301
security_groups = compact(concat(try(network_interfaces.value.security_groups, []), var.security_groups))

0 commit comments

Comments
 (0)