You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: The type of the output cloudwatch_log_group_name should be a string instead of a list of strings (#1061)
NOTES: The output `cloudwatch_log_group_name` was incorrectly returning the log group name as a list of strings. As a workaround, people were using `module.eks_cluster.cloudwatch_log_group_name[0]` but that was totally inconsistent with output name. Those users can now use `module.eks_cluster.cloudwatch_log_group_name` directly.
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -202,7 +202,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
202
202
| map\_roles | Additional IAM roles to add to the aws-auth configmap. See examples/basic/variables.tf for example format. | <pre>list(object({<br> rolearn = string<br> username = string<br> groups = list(string)<br> }))</pre> |`[]`| no |
203
203
| map\_users | Additional IAM users to add to the aws-auth configmap. See examples/basic/variables.tf for example format. | <pre>list(object({<br> userarn = string<br> username = string<br> groups = list(string)<br> }))</pre> |`[]`| no |
204
204
| node\_groups | Map of map of node groups to create. See `node_groups` module's documentation for more details |`any`|`{}`| no |
205
-
| node\_groups\_defaults | Map of values to be applied to all node groups. See `node_groups` module's documentaton for more details |`any`|`{}`| no |
205
+
| node\_groups\_defaults | Map of values to be applied to all node groups. See `node_groups` module's documentation for more details |`any`|`{}`| no |
206
206
| permissions\_boundary | If provided, all IAM roles will be created with this permissions boundary attached. |`string`|`null`| no |
207
207
| subnets | A list of subnets to place the EKS cluster and workers within. |`list(string)`| n/a | yes |
208
208
| tags | A map of tags to add to all resources. |`map(string)`|`{}`| no |
0 commit comments