Skip to content

How to change delegated administrator for Identity Center in LZA?

0

Hi all

I'm deploying the Landing Zone Accelerator on AWS (LZA) https://docs.aws.amazon.com/solutions/latest/landing-zone-accelerator-on-aws/. I could see it delegated administrator for IAM Identity Center to Audit account. I'd love to change it to other account such as custom Identity account. Can I change it manually? Or is there any other way to use config file?

Thanks.

2 Answers
2
Accepted Answer

You should be able to achieve this by using delegatedAdminAccount https://awslabs.github.io/landing-zone-accelerator-on-aws/latest/typedocs/v1.6.0/classes/_aws_accelerator_config.IdentityCenterConfig.html#delegatedAdminAccount

Set the following in iam-config.yaml:

.
.
.
identityCenter:
  name: my-organisation
  delegatedAdminAccount: LZA-Delegate-Account
.
.
.

Where the account is defined in accounts-config.yaml:

workloadAccounts:
.
.
.
  - email: lza-delegate-email@mycompany.com
    name: LZA-Delegate-Account
    organizationalUnit: ...
.
.
.
EXPERT
answered a year ago
EXPERT
reviewed a year ago
1

You can change the delegated administrator to another account, but there may be limitations when that administrator account makes API calls to resources that live in the Management account, as I understand it this will be addressed in an upcoming release as well. This documentation may be helpful: https://docs.aws.amazon.com/singlesignon/latest/userguide/delegated-admin.html Hope this helps!

AWS
answered a year ago
EXPERT
reviewed a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.