feat: Add variable to provide additional OIDC thumbprints (#1865)

Co-authored-by: Anton Babenko <anton@antonbabenko.com>
This commit is contained in:
Fernando Viana
2022-02-15 10:42:44 -03:00
committed by GitHub
parent c0571ab612
commit 3fc9f2d69c
3 changed files with 8 additions and 1 deletions

View File

@@ -247,6 +247,12 @@ variable "openid_connect_audiences" {
default = []
}
variable "custom_oidc_thumbprints" {
description = "Additional list of server certificate thumbprints for the OpenID Connect (OIDC) identity provider's server certificate(s)"
type = list(string)
default = []
}
################################################################################
# Cluster IAM Role
################################################################################