From 524269b3c43e0e39e78b8bbd8f55ce93a5babd2c Mon Sep 17 00:00:00 2001 From: sh1220 Date: Wed, 30 Jul 2025 16:18:03 +0900 Subject: [PATCH 1/2] feat: add permission --- identity-team-account/organization/sso/locals_team_accounts.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/identity-team-account/organization/sso/locals_team_accounts.tf b/identity-team-account/organization/sso/locals_team_accounts.tf index 3960728..a016324 100644 --- a/identity-team-account/organization/sso/locals_team_accounts.tf +++ b/identity-team-account/organization/sso/locals_team_accounts.tf @@ -29,6 +29,8 @@ locals { operation_team_admin_accounts = { operation_account = data.terraform_remote_state.organization.outputs.operation_account_id prod_account = data.terraform_remote_state.organization.outputs.prod_account_id + management_account = data.terraform_remote_state.organization.outputs.management_account_id + } operation_team_readonly_accounts = { identity_account = data.terraform_remote_state.organization.outputs.identity_account_id, From 2d6ea9055b96faa4f78a386520a6a32c6e9b303d Mon Sep 17 00:00:00 2001 From: sh1220 Date: Wed, 30 Jul 2025 16:24:08 +0900 Subject: [PATCH 2/2] fix: terraform fmt --- .../organization/sso/locals_team_accounts.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/identity-team-account/organization/sso/locals_team_accounts.tf b/identity-team-account/organization/sso/locals_team_accounts.tf index a016324..80a9582 100644 --- a/identity-team-account/organization/sso/locals_team_accounts.tf +++ b/identity-team-account/organization/sso/locals_team_accounts.tf @@ -27,8 +27,8 @@ locals { # operation_team_admin_accounts: operation의 관리자 권한을 부여할 계정 목록 operation_team_admin_accounts = { - operation_account = data.terraform_remote_state.organization.outputs.operation_account_id - prod_account = data.terraform_remote_state.organization.outputs.prod_account_id + operation_account = data.terraform_remote_state.organization.outputs.operation_account_id + prod_account = data.terraform_remote_state.organization.outputs.prod_account_id management_account = data.terraform_remote_state.organization.outputs.management_account_id }