Skip to content

Commit 21d50f4

Browse files
terraform-docs: automated action
1 parent bf05de3 commit 21d50f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/quix-eks-dependencies/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ No modules.
6464
| <a name="input_nlb_controller_service_account"></a> [nlb\_controller\_service\_account](#input\_nlb\_controller\_service\_account) | Service account used by the AWS Load Balancer Controller | `string` | `"aws-load-balancer-controller"` | no |
6565
| <a name="input_oidc_provider_arn"></a> [oidc\_provider\_arn](#input\_oidc\_provider\_arn) | ARN of the OIDC Provider for the EKS cluster | `string` | `null` | no |
6666
| <a name="input_region"></a> [region](#input\_region) | AWS region where the cluster lives | `string` | n/a | yes |
67-
| <a name="input_tags"></a> [tags](#input\_tags) | Tags to apply to all resources created by this module | `map(string)` | <pre>{<br/> "Customer": "Quix",<br/> "Environment": "Production"<br/>}</pre> | no |
67+
| <a name="input_tags"></a> [tags](#input\_tags) | Tags to apply to all resources created by this module | `map(string)` | <pre>{<br> "Customer": "Quix",<br> "Environment": "Production"<br>}</pre> | no |
6868

6969
## Outputs
7070

modules/quix-eks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@
7575
| <a name="input_enable_nat_gateway"></a> [enable\_nat\_gateway](#input\_enable\_nat\_gateway) | Whether to create a single NAT Gateway for private subnets. Only used when create\_vpc is true | `bool` | `true` | no |
7676
| <a name="input_encrypted"></a> [encrypted](#input\_encrypted) | If `true`, the disk will be encrypted | `bool` | `true` | no |
7777
| <a name="input_lifecycle_policy"></a> [lifecycle\_policy](#input\_lifecycle\_policy) | A file system [lifecycle policy](https://docs.aws.amazon.com/efs/latest/ug/API_LifecyclePolicy.html) object | `any` | `{}` | no |
78-
| <a name="input_node_pools"></a> [node\_pools](#input\_node\_pools) | Map of node pools to create as EKS managed node groups | <pre>map(object({<br/> name = string<br/> node_count = number<br/> instance_size = string # maps to instance type<br/> disk_size = number<br/> labels = optional(map(string), {})<br/> taints = optional(list(object({<br/> key = string<br/> value = string<br/> effect = string # NoSchedule | PreferNoSchedule | NoExecute<br/> })), [])<br/> }))</pre> | <pre>{<br/> "default": {<br/> "disk_size": 75,<br/> "instance_size": "m6i.large",<br/> "labels": {},<br/> "name": "default",<br/> "node_count": 3,<br/> "taints": []<br/> }<br/>}</pre> | no |
78+
| <a name="input_node_pools"></a> [node\_pools](#input\_node\_pools) | Map of node pools to create as EKS managed node groups | <pre>map(object({<br> name = string<br> node_count = number<br> instance_size = string # maps to instance type<br> disk_size = number<br> labels = optional(map(string), {})<br> taints = optional(list(object({<br> key = string<br> value = string<br> effect = string # NoSchedule | PreferNoSchedule | NoExecute<br> })), [])<br> }))</pre> | <pre>{<br> "default": {<br> "disk_size": 75,<br> "instance_size": "m6i.large",<br> "labels": {},<br> "name": "default",<br> "node_count": 3,<br> "taints": []<br> }<br>}</pre> | no |
7979
| <a name="input_private_subnet_ids"></a> [private\_subnet\_ids](#input\_private\_subnet\_ids) | List of existing private subnet IDs. Required when create\_vpc is false | `list(string)` | `[]` | no |
8080
| <a name="input_private_subnets"></a> [private\_subnets](#input\_private\_subnets) | The private subnet CIDRs. Required when create\_vpc is true | `list(string)` | `[]` | no |
8181
| <a name="input_public_subnet_ids"></a> [public\_subnet\_ids](#input\_public\_subnet\_ids) | List of existing public subnet IDs. Required when create\_vpc is false | `list(string)` | `[]` | no |
8282
| <a name="input_public_subnets"></a> [public\_subnets](#input\_public\_subnets) | The public subnet CIDRs. Required when create\_vpc is true | `list(string)` | `[]` | no |
8383
| <a name="input_region"></a> [region](#input\_region) | The AWS region | `string` | n/a | yes |
8484
| <a name="input_replication_configuration_destination"></a> [replication\_configuration\_destination](#input\_replication\_configuration\_destination) | A destination configuration block | `any` | `{}` | no |
8585
| <a name="input_singleaz"></a> [singleaz](#input\_singleaz) | The availability zone name to pin single-AZ resources (e.g., efs/mnt) | `string` | `null` | no |
86-
| <a name="input_tags"></a> [tags](#input\_tags) | n/a | `map(string)` | <pre>{<br/> "Customer": "Quix",<br/> "Environment": "Production"<br/>}</pre> | no |
86+
| <a name="input_tags"></a> [tags](#input\_tags) | n/a | `map(string)` | <pre>{<br> "Customer": "Quix",<br> "Environment": "Production"<br>}</pre> | no |
8787
| <a name="input_vpc_cidr"></a> [vpc\_cidr](#input\_vpc\_cidr) | The VPC CIDR. Required when create\_vpc is true | `string` | `null` | no |
8888
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | ID of existing VPC. Required when create\_vpc is false | `string` | `null` | no |
8989

0 commit comments

Comments
 (0)