diff --git a/aws/cluster/README.md b/aws/cluster/README.md index c2be264..6a03d15 100644 --- a/aws/cluster/README.md +++ b/aws/cluster/README.md @@ -96,6 +96,8 @@ module "cluster" { | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [enabled\_cluster\_log\_types](#input\_enabled\_cluster\_log\_types) | Which EKS control plane log types to enable | `list(string)` | `[]` | no | +| [endpoint\_private\_access](#input\_endpoint\_private\_access) | Enables the Amazon EKS private API server endpoint. | `bool` | `false` | no | +| [endpoint\_public\_access](#input\_endpoint\_public\_access) | Enables the Amazon EKS public API server endpoint. | `bool` | `true` | no | | [k8s\_version](#input\_k8s\_version) | Kubernetes version to deploy | `string` | n/a | yes | | [labels](#input\_labels) | Labels to be applied to created resources | `map(string)` | `{}` | no | | [log\_retention\_in\_days](#input\_log\_retention\_in\_days) | How many days until control plane logs are purged | `number` | `7` | no | diff --git a/aws/cluster/modules/eks-cluster/README.md b/aws/cluster/modules/eks-cluster/README.md index 82332ba..b9a731b 100644 --- a/aws/cluster/modules/eks-cluster/README.md +++ b/aws/cluster/modules/eks-cluster/README.md @@ -32,6 +32,8 @@ | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [enabled\_cluster\_log\_types](#input\_enabled\_cluster\_log\_types) | Which EKS control plane log types to enable | `list(string)` |
[
"api",
"audit"
]
| no | +| [endpoint\_private\_access](#input\_endpoint\_private\_access) | Enables the Amazon EKS private API server endpoint. | `bool` | `false` | no | +| [endpoint\_public\_access](#input\_endpoint\_public\_access) | Enables the Amazon EKS public API server endpoint. | `bool` | `true` | no | | [k8s\_version](#input\_k8s\_version) | Kubernetes version to deploy | `string` | n/a | yes | | [log\_retention\_in\_days](#input\_log\_retention\_in\_days) | How many days until control plane logs are purged | `number` | `7` | no | | [name](#input\_name) | Name for this EKS cluster | `string` | n/a | yes |