feat: Add additional output for OIDC provider (issuer URL without leading https://) (#1870)

This commit is contained in:
Bryant Biggs
2022-02-11 16:26:36 -05:00
committed by GitHub
parent 6a30b73fe4
commit d3b68479de
13 changed files with 37 additions and 1 deletions

View File

@@ -74,6 +74,11 @@ output "node_security_group_id" {
# IRSA
################################################################################
output "oidc_provider" {
description = "The OpenID Connect identity provider (issuer URL without leading `https://`)"
value = module.eks.oidc_provider
}
output "oidc_provider_arn" {
description = "The ARN of the OIDC Provider if `enable_irsa = true`"
value = module.eks.oidc_provider_arn