diff --git a/README.md b/README.md index 689f0b6..1c6d1dd 100644 --- a/README.md +++ b/README.md @@ -119,3 +119,4 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a | kubeconfig | kubectl config file contents for this EKS cluster. | | worker_security_group_id | Security group ID attached to the EKS workers. | | workers_asg_arns | IDs of the autoscaling groups containing workers. | +| worker_iam_role_name | IAM role name attached to EKS workers. | diff --git a/outputs.tf b/outputs.tf index 37145f4..9f5a16f 100644 --- a/outputs.tf +++ b/outputs.tf @@ -48,3 +48,8 @@ output "worker_security_group_id" { description = "Security group ID attached to the EKS workers." value = "${local.worker_security_group_id}" } + +output "worker_iam_role_name" { + description = "IAM role name attached to EKS workers" + value = "${aws_iam_role.workers.name}" +}