We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab95969 commit f117007Copy full SHA for f117007
modules/iam-group-with-assumable-roles-policy/README.md
@@ -28,6 +28,7 @@ Creates IAM group with users who are allowed to assume IAM roles. This is typica
28
29
| Name | Description |
30
|------|-------------|
31
+| group\_arn | IAM group arn |
32
| group\_name | IAM group name |
33
| this\_assumable\_roles | List of ARNs of IAM roles which members of IAM group can assume |
34
| this\_group\_users | List of IAM users in IAM group |
modules/iam-group-with-assumable-roles-policy/outputs.tf
@@ -18,3 +18,8 @@ output "group_name" {
18
value = aws_iam_group.this.name
19
}
20
21
+output "group_arn" {
22
+ description = "IAM group arn"
23
+ value = aws_iam_group.this.arn
24
+}
25
+
0 commit comments