File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,7 @@ Available targets:
257
257
| ------| -------------|
258
258
| cluster\_ id | EMR cluster ID |
259
259
| cluster\_ name | EMR cluster name |
260
+ | ec2\_ role | Role name of EMR EC2 instances so users can attach more policies |
260
261
| master\_ host | Name of the cluster CNAME record for the master nodes in the parent DNS zone |
261
262
| master\_ public\_ dns | Master public DNS |
262
263
| master\_ security\_ group\_ id | Master security group ID |
Original file line number Diff line number Diff line change 90
90
| ------| -------------|
91
91
| cluster\_ id | EMR cluster ID |
92
92
| cluster\_ name | EMR cluster name |
93
+ | ec2\_ role | Role name of EMR EC2 instances so users can attach more policies |
93
94
| master\_ host | Name of the cluster CNAME record for the master nodes in the parent DNS zone |
94
95
| master\_ public\_ dns | Master public DNS |
95
96
| master\_ security\_ group\_ id | Master security group ID |
Original file line number Diff line number Diff line change @@ -27,3 +27,8 @@ output "master_host" {
27
27
value = module. dns_master . hostname
28
28
description = " Name of the cluster CNAME record for the master nodes in the parent DNS zone"
29
29
}
30
+
31
+ output "ec2_role" {
32
+ value = join (" " , aws_iam_role. ec2 . * . name )
33
+ description = " Role name of EMR EC2 instances so users can attach more policies"
34
+ }
You can’t perform that action at this time.
0 commit comments