From bab1d2dcb909017db7cdb938cbfb32e7bd527874 Mon Sep 17 00:00:00 2001 From: Shayne Clausson Date: Wed, 26 Apr 2023 10:35:22 +0200 Subject: [PATCH 1/2] fix: Set endpoint-independent-mapping default to false --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index e188873..88d2bab 100644 --- a/variables.tf +++ b/variables.tf @@ -137,5 +137,5 @@ variable "log_config_filter" { variable "enable_endpoint_independent_mapping" { type = bool description = "Specifies if endpoint independent mapping is enabled." - default = null + default = false } From 0ad6d5dd6ff1cd3b9aaaa2dc464c8652eb084c81 Mon Sep 17 00:00:00 2001 From: Shayne Clausson Date: Wed, 17 May 2023 20:36:27 +0200 Subject: [PATCH 2/2] chore: Update docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b889591..efe9775 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Then perform the following commands on the root folder: |------|-------------|------|---------|:--------:| | create\_router | Create router instead of using an existing one, uses 'router' variable for new resource name. | `bool` | `false` | no | | enable\_dynamic\_port\_allocation | Enable Dynamic Port Allocation. If minPorts is set, minPortsPerVm must be set to a power of two greater than or equal to 32. | `bool` | `false` | no | -| enable\_endpoint\_independent\_mapping | Specifies if endpoint independent mapping is enabled. | `bool` | `null` | no | +| enable\_endpoint\_independent\_mapping | Specifies if endpoint independent mapping is enabled. | `bool` | `false` | no | | icmp\_idle\_timeout\_sec | Timeout (in seconds) for ICMP connections. Defaults to 30s if not set. Changing this forces a new NAT to be created. | `string` | `"30"` | no | | log\_config\_enable | Indicates whether or not to export logs | `bool` | `false` | no | | log\_config\_filter | Specifies the desired filtering of logs on this NAT. Valid values are: "ERRORS\_ONLY", "TRANSLATIONS\_ONLY", "ALL" | `string` | `"ALL"` | no |