feat: Allow users to add more Audiences to OpenID Connect (#1451)

This commit is contained in:
Scott Cabrinha
2021-08-31 03:27:04 -07:00
committed by GitHub
parent 4be3cc3045
commit 6fb02c4fc4
4 changed files with 9 additions and 2 deletions

View File

@@ -393,3 +393,9 @@ variable "wait_for_cluster_timeout" {
type = number
default = 300
}
variable "openid_connect_audiences" {
description = "List of OpenID Connect audience client IDs to add to the IRSA provider."
type = list(string)
default = []
}