如何在 AWS 上将一个组添加为另一个组的成员?
How can I add a group as a member of another group on AWS?
AWS IAM 允许轻松地将用户添加到组。
如何将一个组添加到另一个组,以便所有权限都是 'nested' 或 'inherited'?
我想避免多次添加用户或多次附加权限。
不可能有嵌套组,如AWS IAM user groups Documentation中所述:
A user group can contain many users, and a user can belong to multiple user groups.
User groups can't be nested; they can contain only users, not other user groups.
但是,您可以跨多个组附加 IAM 策略(服务权限)and/or 用户以嵌套方式授予权限。
AWS IAM 允许轻松地将用户添加到组。
如何将一个组添加到另一个组,以便所有权限都是 'nested' 或 'inherited'?
我想避免多次添加用户或多次附加权限。
不可能有嵌套组,如AWS IAM user groups Documentation中所述:
A user group can contain many users, and a user can belong to multiple user groups.
User groups can't be nested; they can contain only users, not other user groups.
但是,您可以跨多个组附加 IAM 策略(服务权限)and/or 用户以嵌套方式授予权限。