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
已提问 3 个月前165 查看次数
1 回答
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
专家
Iakov
已回答 3 个月前
  • I have managed to get it working successfully. thanks for providing very detailed instructions.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则