diff --git a/README.md b/README.md index 14d8883..f4e161d 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ kube-proxy | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| +| [access\_entries](#input\_access\_entries) | Map of access entries to add to the cluster | `any` | `{}` | no | | [census\_private\_cidr](#input\_census\_private\_cidr) | Census Private CIR Blocks | `list(string)` |
[
"148.129.0.0/16",
"172.16.0.0/12",
"192.168.0.0/16"
]
| no | | [cluster\_endpoint\_public\_access](#input\_cluster\_endpoint\_public\_access) | This allows to access the cluster from IEB cloud host | `bool` | `false` | no | | [cluster\_name](#input\_cluster\_name) | EKS cluster name name component used through out the EKS cluster describing its purpose (ex: dice-dev) | `string` | n/a | yes | diff --git a/variables.tf b/variables.tf index c23678d..9a4c157 100644 --- a/variables.tf +++ b/variables.tf @@ -79,6 +79,13 @@ variable "operators_ns" { default = "operators" } +# tflint-ignore: terraform_unused_declarations +variable "access_entries" { + description = "Map of access entries to add to the cluster" + type = any + default = {} +} + ################################################################### # Common variables ###################################################################