-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add enabled var to booloean creation of resources (#12)
* Add enabled var to booloean creation of resources This commit adds an “enabled” flag and defaults to true. * Update variables.tf * Rebuild README
- Loading branch information
Showing
5 changed files
with
84 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
# Group outputs | ||
# | ||
output "group_admin_id" { | ||
value = "${aws_iam_group.admin.id}" | ||
value = "${join("", aws_iam_group.admin.*.id)}" | ||
description = "Admin group ID" | ||
} | ||
|
||
output "group_admin_arn" { | ||
value = "${aws_iam_group.admin.arn}" | ||
value = "${join("", aws_iam_group.admin.*.arn)}" | ||
description = "Admin group ARN" | ||
} | ||
|
||
output "group_admin_name" { | ||
value = "${aws_iam_group.admin.name}" | ||
value = "${join("", aws_iam_group.admin.*.name)}" | ||
description = "Admin group name" | ||
} | ||
|
||
output "group_readonly_id" { | ||
value = "${aws_iam_group.readonly.id}" | ||
value = "${join("", aws_iam_group.readonly.*.id)}" | ||
description = "Readonly group ID" | ||
} | ||
|
||
output "group_readonly_arn" { | ||
value = "${aws_iam_group.readonly.arn}" | ||
value = "${join("", aws_iam_group.readonly.*.arn)}" | ||
description = "Readonly group ARN" | ||
} | ||
|
||
output "group_readonly_name" { | ||
value = "${aws_iam_group.readonly.name}" | ||
value = "${join("", aws_iam_group.readonly.*.name)}" | ||
description = "Readonly group name" | ||
} | ||
|
||
# Role outputs | ||
# | ||
output "role_admin_arn" { | ||
value = "${aws_iam_role.admin.arn}" | ||
value = "${join("", aws_iam_role.admin.*.arn)}" | ||
description = "Admin role ARN" | ||
} | ||
|
||
output "role_admin_name" { | ||
value = "${aws_iam_role.admin.name}" | ||
value = "${join("", aws_iam_role.admin.*.name)}" | ||
description = "Admin role name" | ||
} | ||
|
||
output "role_readonly_arn" { | ||
value = "${aws_iam_role.readonly.arn}" | ||
value = "${join("", aws_iam_role.readonly.*.arn)}" | ||
description = "Readonly role ARN" | ||
} | ||
|
||
output "role_readonly_name" { | ||
value = "${aws_iam_role.readonly.name}" | ||
value = "${join("", aws_iam_role.readonly.*.name)}" | ||
description = "Readonly role name" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters