Skip to content

Commit

Permalink
temporary disable backends
Browse files Browse the repository at this point in the history
  • Loading branch information
wardviaene committed Sep 24, 2019
1 parent c0216a9 commit 892bf58
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions terraform/appmesh.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ resource "aws_appmesh_virtual_node" "envoy-proxy" {
mesh_name = "${var.appmesh_name}"

spec {
backend {
virtual_service {
virtual_service_name = "roxprox.roxprox.local"
}
}
#backend {
# virtual_service {
# virtual_service_name = "roxprox.roxprox.local"
# }
#}

dynamic "backend" {
for_each = var.appmesh_backends
content {
virtual_service {
virtual_service_name = backend.value
}
}
}
#dynamic "backend" {
# for_each = var.appmesh_backends
# content {
# virtual_service {
# virtual_service_name = backend.value
# }
# }
#}

listener {
port_mapping {
Expand Down

0 comments on commit 892bf58

Please sign in to comment.