From 2a07d37d8a860f8e7ccd43abe42d8f4c317f3f54 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 13 May 2024 16:04:56 -0400 Subject: [PATCH] update defaults --- security-groups/README.md | 2 +- security-groups/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/security-groups/README.md b/security-groups/README.md index 61751e6..789327c 100644 --- a/security-groups/README.md +++ b/security-groups/README.md @@ -138,7 +138,7 @@ module "base-security-groups" { |------|-------------|------|---------|:--------:| | [account\_alias](#input\_account\_alias) | AWS Account Alias (default: will pull from current account\_alias) | `string` | `""` | no | | [account\_id](#input\_account\_id) | AWS Account ID (default: will pull from current user) | `string` | `""` | no | -| [egress\_networks](#input\_egress\_networks) | List of egress networks | `list(string)` | `[]` | no | +| [egress\_networks](#input\_egress\_networks) | List of egress networks | `list(string)` |
[
"0.0.0.0/0"
]
| no | | [enable\_manage\_default\_sg](#input\_enable\_manage\_default\_sg) | Flag to manage default security group if present. Set to false for shared VPCs | `bool` | `true` | no | | [ingress\_networks](#input\_ingress\_networks) | List of ingress networks for external access | `list(string)` | `[]` | no | | [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component. This should be used primarily for common infrastructure things | `map(string)` | `{}` | no | diff --git a/security-groups/variables.tf b/security-groups/variables.tf index 7e90f6a..e149ec7 100644 --- a/security-groups/variables.tf +++ b/security-groups/variables.tf @@ -13,5 +13,5 @@ variable "ingress_networks" { variable "egress_networks" { description = "List of egress networks" type = list(string) - default = [] + default = ["0.0.0.0/0"] }