Skip to content

Commit

Permalink
remove commented out code from service-connect.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
marycrawford committed Jun 12, 2024
1 parent 393d8f3 commit 984bfa7
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions modules/ecs/service-connect.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "/"
# }
# }
# }
# }

0 comments on commit 984bfa7

Please sign in to comment.