1
0
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:
Igor Borodin
2018-07-11 11:32:09 +03:00
parent 857c2dc5f9
commit 46ad6259ce
+5
View File
@@ -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}"
}