我试图集中管理子帐户中运行的自定义配置规则的lambda函数。 lambda函数将承担角色,该角色将作为参数传递给配置规则。
我正在关注How to Centrally Manage AWS Config Rules across Multiple AWS Accounts | AWS DevOps Blog。
有人提到这样做:
// Assume the role passed from the managed-account
aws.config.credentials = new aws.TemporaryCredentials({RoleArn: ruleParameters.executionRole});
let config = new aws.ConfigService({});
在Python中怎么做?
答案 0 :(得分:0)
我浏览了您共享的博客,并根据该博客说, 在客户帐户中创建配置规则时,必须将executionRole作为参数传递。
role/lambda_config_role
承担。 role/lambda_config_role
是您分配给父帐户中的lambda函数的角色。根据博客: