Add IRSA support (#632)

This commit is contained in:
Alaa Qutaish
2019-12-19 16:38:12 +01:00
committed by Max Williams
parent 77f947ec91
commit 583c32d286
4 changed files with 30 additions and 0 deletions

View File

@@ -299,3 +299,15 @@ variable "node_groups" {
type = any
default = []
}
variable "enable_irsa" {
description = "Whether to create OpenID Connect Provider for EKS to enable IRSA"
type = bool
default = false
}
variable "eks_oidc_root_ca_thumbprint" {
type = string
description = "Thumbprint of Root CA for EKS OIDC, Valid until 2037"
default = "9e99a48a9960b14926bb7f3b02e22da2b0ab7280"
}