generated from cds-snc/project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add superset prod account id * feat: create the Superset prod groups * feat: setup the groups/permissions assignments
- Loading branch information
Showing
3 changed files
with
56 additions
and
0 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
34 changes: 34 additions & 0 deletions
34
terragrunt/org_account/iam_identity_center/platform_superset_assignments.tf
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,34 @@ | ||
# | ||
# Accounts: assign permissions | ||
# | ||
locals { | ||
# Superset-Production | ||
superset_production_permission_sets = [ | ||
{ | ||
group = aws_identitystore_group.superset_production_admin, | ||
permission_set = data.aws_ssoadmin_permission_set.aws_administrator_access, | ||
}, | ||
{ | ||
group = aws_identitystore_group.superset_production_read_only_billing, | ||
permission_set = aws_ssoadmin_permission_set.read_only_billing, | ||
}, | ||
{ | ||
group = aws_identitystore_group.superset_production_read_only, | ||
permission_set = data.aws_ssoadmin_permission_set.aws_read_only_access, | ||
} | ||
] | ||
} | ||
|
||
|
||
resource "aws_ssoadmin_account_assignment" "superset_production" { | ||
for_each = { for perm in local.superset_production_permission_sets : "${perm.group.display_name}-${perm.permission_set.name}" => perm } | ||
|
||
instance_arn = local.sso_instance_arn | ||
permission_set_arn = each.value.permission_set.arn | ||
|
||
principal_id = each.value.group.group_id | ||
principal_type = "GROUP" | ||
|
||
target_id = local.superset_production_account_id | ||
target_type = "AWS_ACCOUNT" | ||
} |
20 changes: 20 additions & 0 deletions
20
terragrunt/org_account/iam_identity_center/platform_superset_groups.tf
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,20 @@ | ||
# | ||
# Production | ||
# | ||
resource "aws_identitystore_group" "superset_production_admin" { | ||
display_name = "Superset-Production-Admin" | ||
description = "Grants members administrator access to the Superset Production account." | ||
identity_store_id = local.sso_identity_store_id | ||
} | ||
|
||
resource "aws_identitystore_group" "superset_production_read_only_billing" { | ||
display_name = "Superset-Production-Billing-ReadOnly" | ||
description = "Grants members read-only Billing and Cost Explorer access to the Superset Production account." | ||
identity_store_id = local.sso_identity_store_id | ||
} | ||
|
||
resource "aws_identitystore_group" "superset_production_read_only" { | ||
display_name = "Superset-Production-ReadOnly" | ||
description = "Grants members read-only access to the Superset Production account." | ||
identity_store_id = local.sso_identity_store_id | ||
} |