From c666aa51ebdd8f63359fc573f3a93cbdc95b3238 Mon Sep 17 00:00:00 2001 From: Stavros Foteinopoulos Date: Tue, 1 Oct 2024 10:46:29 +0300 Subject: [PATCH] Fix bug in cluster-autoscaler module Signed-off-by: Stavros Foteinopoulos --- aws/cluster-autoscaler/README.md | 2 +- aws/cluster-autoscaler/variables.tf | 1 + aws/transit-gateway-attachment/README.md | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/aws/cluster-autoscaler/README.md b/aws/cluster-autoscaler/README.md index 87c69e7b..7162ea73 100644 --- a/aws/cluster-autoscaler/README.md +++ b/aws/cluster-autoscaler/README.md @@ -28,7 +28,7 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| [additional\_role\_name](#input\_additional\_role\_name) | Existing role which needs to attach the same policy | `string` | n/a | yes | +| [additional\_role\_name](#input\_additional\_role\_name) | Existing role which needs to attach the same policy | `string` | `""` | no | | [environment](#input\_environment) | The name of the environment which will deploy to and will be added as a tag | `string` | n/a | yes | | [namespace](#input\_namespace) | The namespace, which host the service account & target application | `string` | n/a | yes | | [open\_oidc\_provider\_arn](#input\_open\_oidc\_provider\_arn) | The Open OIDC Provider ARN for a specific cluster | `string` | n/a | yes | diff --git a/aws/cluster-autoscaler/variables.tf b/aws/cluster-autoscaler/variables.tf index f7870395..e84eab79 100644 --- a/aws/cluster-autoscaler/variables.tf +++ b/aws/cluster-autoscaler/variables.tf @@ -26,4 +26,5 @@ variable "namespace" { variable "additional_role_name" { type = string description = "Existing role which needs to attach the same policy " + default = "" } diff --git a/aws/transit-gateway-attachment/README.md b/aws/transit-gateway-attachment/README.md index 4caead27..2fd6f4b6 100644 --- a/aws/transit-gateway-attachment/README.md +++ b/aws/transit-gateway-attachment/README.md @@ -26,6 +26,7 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [name](#input\_name) | The name tag of the tgw attachment | `string` | n/a | yes | +| [security\_group\_referencing\_support](#input\_security\_group\_referencing\_support) | Security Group Referencing allows to specify other SGs as references, or matching criterion in inbound security rules to allow instance-to-instance traffic | `string` | `"disable"` | no | | [subnet\_ids](#input\_subnet\_ids) | Identifiers of EC2 Subnets | `list(string)` | n/a | yes | | [transit\_gateway\_id](#input\_transit\_gateway\_id) | Identifier of EC2 Transit Gateway | `string` | n/a | yes | | [vpc\_id](#input\_vpc\_id) | Identifier of EC2 VPC | `string` | n/a | yes |