Trusted Advisor Organisational Cloud Intelligence Dashboards

0

Per instructions on https://catalog.workshops.aws/awscid/en-US/data-collection/deploy , step#1 needs to be performed at the Organisation account level which deploys stack sets and resources to linked accounts. Is it possible to deploy this using hub model where all linked accounts send data to one data-collection account where QuickSight etc is deployed

Vijay S
posta 3 mesi fa167 visualizzazioni
1 Risposta
1

Hello Indeed, achieving this theatrically is feasible, but it entails deploying a lambda function in each account to send data to a central S3 bucket or EventBridge. However, this approach introduces the challenge of managing multiple lambdas (x N), necessitating the use of stack sets or similar mechanisms. These tools typically require access either to a management account or delegated admin permissions any way.

One potential adjustment is to enhance the account collector lambda of existing solution to return a static list of accounts, ensuring it operates without needing access to the Organization Account.

You will need to

  1. deploy permissions in each linked account -> https://github.com/awslabs/cid-framework/blob/main/data-collection/deploy/deploy-in-linked-account.yaml
  2. Deploy data collection stack as per doc specifying the current linked account as Management account
  3. Modify account_collection lambda to use this example : https://github.com/awslabs/cid-framework/blob/main/data-collection/deploy/account-collector.yaml#L145
            def dummy_iterate_linked_accounts():
                # use this function if you have no access to payer or delegated admin at all
                hardcoded_accounts = [
                    {'account_id': '111222333444', 'account_name': 'replaceme', 'payer_id': '666777888999'},
                    {'account_id': '555666777888', 'account_name': 'replaceme', 'payer_id': '666777888999'},
                ]
                for account_data in hardcoded_accounts:
                    yield {"account": json.dumps(account_data)}
  1. Run State Machine for data collection of Trusted Advisor
profile pictureAWS
ESPERTO
Iakov
con risposta 3 mesi fa
  • I have managed to get it working successfully. thanks for providing very detailed instructions.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande