From 5d90c8fa7a6faa2bde10eac24a8bd9330be4ae3a Mon Sep 17 00:00:00 2001 From: "Masih H. Derkani" <301855+masih@users.noreply.github.com> Date: Tue, 22 Dec 2020 15:50:04 +0000 Subject: [PATCH] docs: Fixes typo in variables description (#1154) --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0497dad..1034436 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a | node\_groups\_defaults | Map of values to be applied to all node groups. See `node_groups` module's documentation for more details | `any` | `{}` | no | | permissions\_boundary | If provided, all IAM roles will be created with this permissions boundary attached. | `string` | `null` | no | | subnets | A list of subnets to place the EKS cluster and workers within. | `list(string)` | n/a | yes | -| 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 | +| 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 | | vpc\_id | VPC where the cluster and workers will be deployed. | `string` | n/a | yes | | 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 | | wait\_for\_cluster\_interpreter | Custom local-exec command line interpreter for the command to determining if the eks cluster is healthy. | `list(string)` |
[| no | diff --git a/variables.tf b/variables.tf index e0675ae..bf173e4 100644 --- a/variables.tf +++ b/variables.tf @@ -85,7 +85,7 @@ variable "subnets" { } variable "tags" { - description = "A map of tags to add to all resources. Tags added to launch coniguration or templates override these values for ASG Tags only." + description = "A map of tags to add to all resources. Tags added to launch configuration or templates override these values for ASG Tags only." type = map(string) default = {} }
"/bin/sh",
"-c"
]