mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-24 18:31:09 +01:00
Add the OIDC provider ARN to outputs (#653)
This commit is contained in:
committed by
Max Williams
parent
bad9604882
commit
ab412fb060
@@ -63,6 +63,11 @@ output "kubeconfig_filename" {
|
||||
value = concat(local_file.kubeconfig.*.filename, [""])[0]
|
||||
}
|
||||
|
||||
output "oidc_provider_arn" {
|
||||
description = "The ARN of the OIDC Provider if `enable_irsa = true`."
|
||||
value = var.enable_irsa ? aws_iam_openid_connect_provider.oidc_provider[0].arn : null
|
||||
}
|
||||
|
||||
output "workers_asg_arns" {
|
||||
description = "IDs of the autoscaling groups containing workers."
|
||||
value = concat(
|
||||
|
||||
Reference in New Issue
Block a user