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
2c234a48
Unverified
Commit
2c234a48
authored
Mar 01, 2021
by
Anton Babenko
Committed by
GitHub
Mar 01, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Update syntax for Terraform 0.15 (#135)
parent
7042ac00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
outputs.tf
modules/iam-assumable-roles-with-saml/outputs.tf
+9
-9
No files found.
modules/iam-assumable-roles-with-saml/outputs.tf
View file @
2c234a48
#Admin
output
"admin_iam_role_arn"
{
description
=
"ARN of admin IAM role"
value
=
element
(
concat
(
aws_iam_role
.
admin
.*.
arn
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
admin
.*.
arn
,
[
""
]
),
0
)
}
output
"admin_iam_role_name"
{
description
=
"Name of admin IAM role"
value
=
element
(
concat
(
aws_iam_role
.
admin
.*.
name
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
admin
.*.
name
,
[
""
]
),
0
)
}
output
"admin_iam_role_path"
{
description
=
"Path of admin IAM role"
value
=
element
(
concat
(
aws_iam_role
.
admin
.*.
path
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
admin
.*.
path
,
[
""
]
),
0
)
}
output
"poweruser_iam_role_arn"
{
description
=
"ARN of poweruser IAM role"
value
=
element
(
concat
(
aws_iam_role
.
poweruser
.*.
arn
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
poweruser
.*.
arn
,
[
""
]
),
0
)
}
output
"poweruser_iam_role_name"
{
description
=
"Name of poweruser IAM role"
value
=
element
(
concat
(
aws_iam_role
.
poweruser
.*.
name
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
poweruser
.*.
name
,
[
""
]
),
0
)
}
output
"poweruser_iam_role_path"
{
description
=
"Path of poweruser IAM role"
value
=
element
(
concat
(
aws_iam_role
.
poweruser
.*.
path
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
poweruser
.*.
path
,
[
""
]
),
0
)
}
# Readonly
output
"readonly_iam_role_arn"
{
description
=
"ARN of readonly IAM role"
value
=
element
(
concat
(
aws_iam_role
.
readonly
.*.
arn
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
readonly
.*.
arn
,
[
""
]
),
0
)
}
output
"readonly_iam_role_name"
{
description
=
"Name of readonly IAM role"
value
=
element
(
concat
(
aws_iam_role
.
readonly
.*.
name
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
readonly
.*.
name
,
[
""
]
),
0
)
}
output
"readonly_iam_role_path"
{
description
=
"Path of readonly IAM role"
value
=
element
(
concat
(
aws_iam_role
.
readonly
.*.
path
,
list
(
""
)
),
0
)
value
=
element
(
concat
(
aws_iam_role
.
readonly
.*.
path
,
[
""
]
),
0
)
}
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