diff --git a/custom/README.md b/custom/README.md index 6674c60..ae3cc1b 100644 --- a/custom/README.md +++ b/custom/README.md @@ -98,7 +98,7 @@ No modules. | [egress\_security\_groups](#input\_egress\_security\_groups) | List of egress security groups (all ports) | `list(string)` | `[]` | no | | [enable\_self](#input\_enable\_self) | Enable\|Disable self full access | `bool` | `false` | no | | [ingress\_networks](#input\_ingress\_networks) | List of ingress networks for access (with all pre-defined ingress ports) | `list(string)` | `[]` | no | -| [ingress\_port\_list](#input\_ingress\_port\_list) | Ingress port list of 5-tuple: from, to, proto, description, and cidr(list) | `list(list(string))` | n/a | yes | +| [ingress\_port\_list](#input\_ingress\_port\_list) | Ingress port list of 5-tuple: from, to, proto, description, and cidr(list) | `list(list(string))` | `[]` | no | | [ingress\_port\_map](#input\_ingress\_port\_map) | Ingress port list of objects: from, to, proto, description and cidr(list) |
list(object({
from = number
to = number
proto = any
description = string
cidr = list(string)
})) | `[]` | no |
| [ingress\_security\_groups](#input\_ingress\_security\_groups) | List of ingress security groups for all ports | `list(string)` | `[]` | no |
| [name](#input\_name) | Security Group Name (required) | `string` | n/a | yes |
diff --git a/custom/variables.tf b/custom/variables.tf
index 9ed5418..e89333d 100644
--- a/custom/variables.tf
+++ b/custom/variables.tf
@@ -19,7 +19,7 @@ variable "short_description" {
variable "ingress_port_list" {
description = "Ingress port list of 5-tuple: from, to, proto, description, and cidr(list)"
type = list(list(string))
- defualt = []
+ default = []
}
variable "ingress_port_map" {