Skip to content

Commit

Permalink
Exposing IAM Role ARNs as outputs of the EKS module (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
mybarretto authored Feb 10, 2022
1 parent ed82849 commit 86b0700
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions terraform-modules/aws/eks/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ output "worker_security_group_id" {
value = module.eks.worker_security_group_id
}

output "cluster_iam_role_arn" {
value = module.eks.cluster_iam_role_arn
}

output "worker_iam_role_arn" {
value = module.eks.worker_iam_role_arn
}

output "cluster_arn" {
value = module.eks.cluster_arn
}

0 comments on commit 86b0700

Please sign in to comment.