generated from terraform-modules/template_aws_submodules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
18 additions
and
11 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,24 @@ | ||
| output "name" { | ||
| description = "Permission Set Name for which all settings apply" | ||
| value = var.name | ||
| value = local.name | ||
| } | ||
|
|
||
| output "managed_policy_names" { | ||
| description = "Names of AWS Managed Policy to attach to the permissionset" | ||
| value = var.managed_policy_names | ||
| value = local.managed_policy_names | ||
| } | ||
|
|
||
| output "customer_managed_policy_names" { | ||
| description = "Map of policy name to permission boundary of Customer Managed Policy to attach to the permissionset" | ||
| value = var.customer_managed_policy_names | ||
| value = local.customer_managed_policy_names | ||
| } | ||
|
|
||
| output "inline_policy" { | ||
| description = "AWS Policy document for the single allowed inline policy (use .json to get policy)" | ||
| value = data.aws_iam_policy_document.inline | ||
| value = local.inline | ||
| } | ||
|
|
||
| output "relay_state" { | ||
| description = "Relay State to pass along to permissionset" | ||
| value = var.relay_state | ||
| value = local.relay_state | ||
| } |
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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| locals { | ||
| name = "servicecatalog-t1" | ||
| managed_policy_names = [ | ||
| "ReadOnlyAccess", | ||
| "AWSServiceCatalogEndUserFullAccess" | ||
| ] | ||
| customer_managed_policy_names = {} | ||
| relay_state = "https://console.amazonaws-us-gov.com/servicecatalog/home" | ||
| inline_policy = data.aws_iam_policy_document.inline | ||
| } |
File renamed without changes.