We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b18b44 + 1020781 commit ca33debCopy full SHA for ca33deb
outputs.tf
@@ -46,3 +46,17 @@ output "cluster_logs_bucket" {
46
description = "Bucket for cluster logs."
47
value = var.create_logs_bucket == true ? aws_s3_bucket.logs_bucket[0].id : null
48
}
49
+
50
+################################################################################
51
+# IRSA
52
53
54
+output "oidc_url" {
55
+ description = "The OpenID Connect identity provider (issuer URL without leading `https://`)"
56
+ value = module.eks.oidc_provider
57
+}
58
59
+output "oidc_provider_arn" {
60
+ description = "The ARN of the OIDC Provider if `enable_irsa = true`"
61
+ value = module.eks.oidc_provider_arn
62
0 commit comments