1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

fix: MNG cluster datasource errors (#1639)

This commit is contained in:
Steve Hipwell
2021-10-14 08:47:27 +01:00
committed by GitHub
parent 306ad727f3
commit 7c335546d6
6 changed files with 21 additions and 11 deletions
+12
View File
@@ -10,6 +10,18 @@ variable "cluster_name" {
default = ""
}
variable "cluster_endpoint" {
description = "Endpoint of parent cluster"
type = string
default = ""
}
variable "cluster_auth_base64" {
description = "Base64 encoded CA of parent cluster"
type = string
default = ""
}
variable "default_iam_role_arn" {
description = "ARN of the default IAM worker role to use if one is not specified in `var.node_groups` or `var.node_groups_defaults`"
type = string