From 984bfa7a5f4861ab2ff98605206743c8b5215e01 Mon Sep 17 00:00:00 2001 From: marycrawford Date: Wed, 12 Jun 2024 13:31:16 -0700 Subject: [PATCH] remove commented out code from service-connect.tf --- modules/ecs/service-connect.tf | 43 ---------------------------------- 1 file changed, 43 deletions(-) diff --git a/modules/ecs/service-connect.tf b/modules/ecs/service-connect.tf index c8ab4d87..f48d588c 100644 --- a/modules/ecs/service-connect.tf +++ b/modules/ecs/service-connect.tf @@ -39,46 +39,3 @@ resource "aws_appmesh_virtual_service" "orchestration_service" { } } } - -# Define the virtual router -# resource "aws_appmesh_virtual_router" "my_virtual_router" { -# name = "my-router" -# mesh_name = aws_appmesh_mesh.dibbs_aws_ecs_mesh.name - -# spec { -# listeners { -# port_mapping { -# port = 80 -# protocol = "http" -# name = "http" -# } - -# port_mapping { -# port = 443 -# protocol = "http" -# name = "https" -# } -# } -# } -# } - -# # Associate the virtual service with the virtual router -# resource "aws_appmesh_route" "my_route" { -# name = "my-route" -# mesh_name = aws_appmesh_mesh.dibbs_aws_ecs_mesh.name -# virtual_router_name = aws_appmesh_virtual_router.my_virtual_router.name -# spec { -# http_route { -# action { -# weighted_targets { -# virtual_node = aws_appmesh_virtual_node.my_virtual_node.name -# weight = 100 -# } -# } - -# match { -# prefix = "/" -# } -# } -# } -# }