From 45e6908b9f6413748145c0e57f66fde6f6fe99f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Wed, 17 Apr 2024 12:50:25 +0200 Subject: [PATCH] Assign an IPv6 address to the ECS clusters --- tf/modules/ecs_cluster/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/tf/modules/ecs_cluster/main.tf b/tf/modules/ecs_cluster/main.tf index 910294f2..b6763577 100644 --- a/tf/modules/ecs_cluster/main.tf +++ b/tf/modules/ecs_cluster/main.tf @@ -147,6 +147,7 @@ resource "aws_launch_template" "container_host" { network_interfaces { associate_public_ip_address = true delete_on_termination = true + ipv6_address_count = 1 security_groups = [ aws_security_group.container_host.id, ]