Skip to content

Commit 5d90c8f

Browse files
authored
docs: Fixes typo in variables description (#1154)
1 parent 7d6e672 commit 5d90c8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
208208
| node\_groups\_defaults | Map of values to be applied to all node groups. See `node_groups` module's documentation for more details | `any` | `{}` | no |
209209
| permissions\_boundary | If provided, all IAM roles will be created with this permissions boundary attached. | `string` | `null` | no |
210210
| subnets | A list of subnets to place the EKS cluster and workers within. | `list(string)` | n/a | yes |
211-
| tags | A map of tags to add to all resources. Tags added to launch coniguration or templates override these values for ASG Tags only. | `map(string)` | `{}` | no |
211+
| tags | A map of tags to add to all resources. Tags added to launch configuration or templates override these values for ASG Tags only. | `map(string)` | `{}` | no |
212212
| vpc\_id | VPC where the cluster and workers will be deployed. | `string` | n/a | yes |
213213
| wait\_for\_cluster\_cmd | Custom local-exec command to execute for determining if the eks cluster is healthy. Cluster endpoint will be available as an environment variable called ENDPOINT | `string` | `"for i in `seq 1 60`; do if `command -v wget > /dev/null`; then wget --no-check-certificate -O - -q $ENDPOINT/healthz >/dev/null && exit 0 || true; else curl -k -s $ENDPOINT/healthz >/dev/null && exit 0 || true;fi; sleep 5; done; echo TIMEOUT && exit 1"` | no |
214214
| wait\_for\_cluster\_interpreter | Custom local-exec command line interpreter for the command to determining if the eks cluster is healthy. | `list(string)` | <pre>[<br> "/bin/sh",<br> "-c"<br>]</pre> | no |

variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ variable "subnets" {
8585
}
8686

8787
variable "tags" {
88-
description = "A map of tags to add to all resources. Tags added to launch coniguration or templates override these values for ASG Tags only."
88+
description = "A map of tags to add to all resources. Tags added to launch configuration or templates override these values for ASG Tags only."
8989
type = map(string)
9090
default = {}
9191
}

0 commit comments

Comments
 (0)