Commit f1170077 authored by Felix Gläske's avatar Felix Gläske Committed by GitHub

feat: Add arn of created group(s) to outputs (#128)

parent ab959696
...@@ -28,6 +28,7 @@ Creates IAM group with users who are allowed to assume IAM roles. This is typica ...@@ -28,6 +28,7 @@ Creates IAM group with users who are allowed to assume IAM roles. This is typica
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| group\_arn | IAM group arn |
| group\_name | IAM group name | | group\_name | IAM group name |
| this\_assumable\_roles | List of ARNs of IAM roles which members of IAM group can assume | | this\_assumable\_roles | List of ARNs of IAM roles which members of IAM group can assume |
| this\_group\_users | List of IAM users in IAM group | | this\_group\_users | List of IAM users in IAM group |
......
...@@ -18,3 +18,8 @@ output "group_name" { ...@@ -18,3 +18,8 @@ output "group_name" {
value = aws_iam_group.this.name value = aws_iam_group.this.name
} }
output "group_arn" {
description = "IAM group arn"
value = aws_iam_group.this.arn
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment