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

View File

@@ -53,3 +53,8 @@ output "worker_iam_role_name" {
description = "IAM role name attached to EKS workers"
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}"
}