From 56fbccedc82aeb82676e07cf1a0e19cd7c977d0b Mon Sep 17 00:00:00 2001 From: Becky <93141344+beckywhitemartin@users.noreply.github.com> Date: Tue, 14 Mar 2023 10:11:05 +0000 Subject: [PATCH] Preserve client ip (#10) * adds flag to permit enable/disable of preserve_client_ip option for target groups * updates notprod sysdig nlb to use new module, with client ip not preserved to permit flow of traffic from agents --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 6074174..5911387 100644 --- a/variables.tf +++ b/variables.tf @@ -74,7 +74,7 @@ variable "vpc_id" { description = "The VPC id you are building the network load balancer in" } -variable "preserve_client_ip" +variable "preserve_client_ip" { description = "Whether to preserve the client (source) IP - false will regard all traffic as originating from the eni, for example" default = true }