Skip to content

Commit aa74e26

Browse files
update READMEs with lint
1 parent 10c8421 commit aa74e26

File tree

3 files changed

+61
-2
lines changed

3 files changed

+61
-2
lines changed

README.md

+36-1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,41 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
163163
| random | >= 2.1 |
164164
| template | >= 2.1 |
165165

166+
## Modules
167+
168+
| Name | Source | Version |
169+
|------|--------|---------|
170+
| fargate | ./modules/fargate | |
171+
| node_groups | ./modules/node_groups | |
172+
173+
## Resources
174+
175+
| Name |
176+
|------|
177+
| [aws_ami](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami) |
178+
| [aws_autoscaling_group](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/autoscaling_group) |
179+
| [aws_caller_identity](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity) |
180+
| [aws_cloudwatch_log_group](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_log_group) |
181+
| [aws_eks_cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/eks_cluster) |
182+
| [aws_iam_instance_profile](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_instance_profile) |
183+
| [aws_iam_instance_profile](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_instance_profile) |
184+
| [aws_iam_openid_connect_provider](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_openid_connect_provider) |
185+
| [aws_iam_policy](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_policy) |
186+
| [aws_iam_policy_document](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) |
187+
| [aws_iam_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_role) |
188+
| [aws_iam_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) |
189+
| [aws_iam_role_policy_attachment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) |
190+
| [aws_launch_configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/launch_configuration) |
191+
| [aws_launch_template](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/launch_template) |
192+
| [aws_partition](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/partition) |
193+
| [aws_security_group](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group) |
194+
| [aws_security_group_rule](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) |
195+
| [kubernetes_config_map](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/config_map) |
196+
| [local_file](https://registry.terraform.io/providers/hashicorp/local/latest/docs/resources/file) |
197+
| [null_resource](https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource) |
198+
| [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet) |
199+
| [template_file](https://registry.terraform.io/providers/hashicorp/template/latest/docs/data-sources/file) |
200+
166201
## Inputs
167202

168203
| Name | Description | Type | Default | Required |
@@ -177,6 +212,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
177212
| cluster\_encryption\_config | Configuration block with encryption configuration for the cluster. See examples/secrets\_encryption/main.tf for example format | <pre>list(object({<br> provider_key_arn = string<br> resources = list(string)<br> }))</pre> | `[]` | no |
178213
| cluster\_endpoint\_private\_access | Indicates whether or not the Amazon EKS private API server endpoint is enabled. | `bool` | `false` | no |
179214
| cluster\_endpoint\_private\_access\_cidrs | List of CIDR blocks which can access the Amazon EKS private API server endpoint. | `list(string)` | `null` | no |
215+
| cluster\_endpoint\_private\_access\_sg | List of security group IDs which can access the Amazon EKS private API server endpoint. | `list(string)` | `null` | no |
180216
| cluster\_endpoint\_public\_access | Indicates whether or not the Amazon EKS public API server endpoint is enabled. | `bool` | `true` | no |
181217
| cluster\_endpoint\_public\_access\_cidrs | List of CIDR blocks which can access the Amazon EKS public API server endpoint. | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
182218
| cluster\_iam\_role\_name | IAM role name for the cluster. Only applicable if manage\_cluster\_iam\_resources is set to false. Set this to reuse an existing IAM role. | `string` | `""` | no |
@@ -268,5 +304,4 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
268304
| workers\_launch\_template\_ids | IDs of the worker launch templates. |
269305
| workers\_launch\_template\_latest\_versions | Latest versions of the worker launch templates. |
270306
| workers\_user\_data | User data of worker groups |
271-
272307
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

modules/fargate/README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ No requirements.
2727
|------|---------|
2828
| aws | n/a |
2929

30+
## Modules
31+
32+
No Modules.
33+
34+
## Resources
35+
36+
| Name |
37+
|------|
38+
| [aws_eks_fargate_profile](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/eks_fargate_profile) |
39+
| [aws_iam_policy_document](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) |
40+
| [aws_iam_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_role) |
41+
| [aws_iam_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) |
42+
| [aws_iam_role_policy_attachment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) |
43+
3044
## Inputs
3145

3246
| Name | Description | Type | Default | Required |
@@ -52,5 +66,4 @@ No requirements.
5266
| fargate\_profile\_ids | EKS Cluster name and EKS Fargate Profile names separated by a colon (:). |
5367
| iam\_role\_arn | IAM role ARN for EKS Fargate pods |
5468
| iam\_role\_name | IAM role name for EKS Fargate pods |
55-
5669
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

modules/node_groups/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,17 @@ No requirements.
4848
| aws | n/a |
4949
| random | n/a |
5050

51+
## Modules
52+
53+
No Modules.
54+
55+
## Resources
56+
57+
| Name |
58+
|------|
59+
| [aws_eks_node_group](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/eks_node_group) |
60+
| [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet) |
61+
5162
## Inputs
5263

5364
| Name | Description | Type | Default | Required |

0 commit comments

Comments
 (0)