我期待在 AWS 服务目录组合中添加一个角色。我可以通过控制台添加它,但我想从 AWS CLI 中添加。
我在 AWS 中找不到任何选项,如果我可以从 CLI 将角色添加到投资组合,有人可以帮忙吗
我期待在 AWS 服务目录组合中添加一个角色。我可以通过控制台添加它,但我想从 AWS CLI 中添加。
我在 AWS 中找不到任何选项,如果我可以从 CLI 将角色添加到投资组合,有人可以帮忙吗
我认为您正在寻找AssociatePrincipalWithPortfolio。
此选项允许将角色添加到您的投资组合
--principal-arn (string)
The ARN of the principal (IAM user, role, or group).
示例命令
aws servicecatalog associate-principal-with-portfolio \
--portfolio-id port-2s6abcdefwdh4 \
--principal-arn arn:aws:iam::123456789012:user/usertest \
--principal-type IAM