Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-iam
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-iam
Commits
f1170077
Unverified
Commit
f1170077
authored
Jan 29, 2021
by
Felix Gläske
Committed by
GitHub
Jan 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Add arn of created group(s) to outputs (#128)
parent
ab959696
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
README.md
modules/iam-group-with-assumable-roles-policy/README.md
+1
-0
outputs.tf
modules/iam-group-with-assumable-roles-policy/outputs.tf
+5
-0
No files found.
modules/iam-group-with-assumable-roles-policy/README.md
View file @
f1170077
...
...
@@ -28,6 +28,7 @@ Creates IAM group with users who are allowed to assume IAM roles. This is typica
| Name | Description |
|------|-------------|
| group
\_
arn | IAM group arn |
| group
\_
name | IAM group name |
| 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 |
...
...
modules/iam-group-with-assumable-roles-policy/outputs.tf
View file @
f1170077
...
...
@@ -18,3 +18,8 @@ output "group_name" {
value
=
aws_iam_group
.
this
.
name
}
output
"group_arn"
{
description
=
"IAM group arn"
value
=
aws_iam_group
.
this
.
arn
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment