From 7c4ee74c3476d47b183bdda1f46a20d58a100417 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 16 Dec 2024 08:46:14 -0500 Subject: [PATCH] fix --- emr/README.md | 1 + emr/variables.tf | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/emr/README.md b/emr/README.md index 45667c2..a8c6895 100644 --- a/emr/README.md +++ b/emr/README.md @@ -81,6 +81,7 @@ No modules. | [description\_prefix](#input\_description\_prefix) | Security Group Description Prefix | `string` | `"Security Group"` | no | | [egress\_networks](#input\_egress\_networks) | List of egress networks (all ports) | `list(string)` |
[
"0.0.0.0/0"
]
| no | | [ingress\_networks](#input\_ingress\_networks) | List of ingress networks for external access (not all ports). Use null to disable built-in settings | `list(string)` | `[]` | no | +| [ingress\_prefix\_list\_names](#input\_ingress\_prefix\_list\_names) | List of prefix list names for ingress access | `list(string)` |
[
"all-networks.core"
]
| no | | [name\_prefix](#input\_name\_prefix) | Security Group Name Prefix | `string` | n/a | yes | | [tags](#input\_tags) | Tags | `map(any)` |
{
"CostAllocation": "csvd:infrastructure",
"Environment": "infrastructure"
}
| no | | [use\_vpc\_cidr](#input\_use\_vpc\_cidr) | Enable\|Disable use of VPC CIDR block in the ingress\_networks | `bool` | `false` | no | diff --git a/emr/variables.tf b/emr/variables.tf index 4f7cfc9..6f13353 100644 --- a/emr/variables.tf +++ b/emr/variables.tf @@ -62,7 +62,7 @@ variable "tags" { } } -ariable "ingress_prefix_list_names" { +variable "ingress_prefix_list_names" { description = "List of prefix list names for ingress access" type = list(string) default = ["all-networks.core"]