Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Tproxy related inputs for examples #285

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/api-gateway/gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ module "api_gateway" {
acls = true

lb_create_security_group = false
enable_transparent_proxy = false

custom_load_balancer_config = [{
container_name = "consul-dataplane"
Expand Down
1 change: 1 addition & 0 deletions examples/cluster-peering/gateway/gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ module "mesh_gateway" {
tls = true
consul_ca_cert_arn = var.ca_cert_arn
additional_task_role_policies = var.additional_task_role_policies
enable_transparent_proxy = false

acls = true

Expand Down
3 changes: 2 additions & 1 deletion examples/mesh-gateways/gateway/gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ module "mesh_gateway" {
lb_subnets = var.public_subnets
lb_vpc_id = var.vpc.vpc_id

consul_ecs_image = var.consul_ecs_image
enable_transparent_proxy = false
consul_ecs_image = var.consul_ecs_image
}
5 changes: 3 additions & 2 deletions examples/service-sameness/gateway/gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ module "mesh_gateway" {
lb_subnets = var.public_subnets
lb_vpc_id = var.vpc.vpc_id

consul_ecs_image = var.consul_ecs_image
consul_partition = var.consul_partition
enable_transparent_proxy = false
consul_ecs_image = var.consul_ecs_image
consul_partition = var.consul_partition
}

# We must wait for the mesh gateway belonging to become healthy before
Expand Down
1 change: 1 addition & 0 deletions examples/terminating-gateway/gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module "terminating_gateway" {
consul_server_hosts = module.dc1.dev_consul_server.server_dns
kind = "terminating-gateway"
tls = true
enable_transparent_proxy = false
consul_ca_cert_arn = module.dc1.dev_consul_server.ca_cert_arn
additional_task_role_policies = [aws_iam_policy.execute_command.arn]

Expand Down
Loading