mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
Adding worker_iam_role_arn to module outputs
This commit is contained in:
@@ -53,3 +53,8 @@ output "worker_iam_role_name" {
|
|||||||
description = "IAM role name attached to EKS workers"
|
description = "IAM role name attached to EKS workers"
|
||||||
value = "${aws_iam_role.workers.name}"
|
value = "${aws_iam_role.workers.name}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "worker_iam_role_arn" {
|
||||||
|
description = "IAM role ID attached to EKS workers"
|
||||||
|
value = "${aws_iam_role.workers.arn}"
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user