AWS的新CloudShell服务允许我直接在浏览器中获取 CLI 会话。在本次会议中,我以我目前的活跃角色行事:
$ aws sts get-caller-identity
{
"UserId": "AROA2MDGRZUIRD434HHAF:johndoe",
"Account": "123456789012",
"Arn": "arn:aws:sts::123456789012:assumed-role/myrole/johndoe"
}
myrole
我可以按预期承担另一个角色:
$ aws sts assume-role --role-arn arn:aws:iam::123456789012:role/otherRole --role-session-name mySession123
{
"Credentials": {
"AccessKeyId": "ASIA...",
"SecretAccessKey": "...",
"SessionToken": "...",
"Expiration": "2021-04-28T16:29:55+00:00"
},
"AssumedRoleUser": {
"AssumedRoleId": "AROA...:mySession123",
"Arn": "arn:aws:sts::123456789012:assumed-role/otherRole/mySession123"
}
}
现在我想配置一个 CLI 配置文件以使用otherRole
. 我尝试了这样的条目:
[profile otherRole]
role_arn = arn:aws:iam::123456789012:role/otherRole
但这会导致错误,因为我必须指定 acredential_source
或 a source_profile
。
从具有我要设置的服务角色的 EC2 实例,credential_source=Ec2InstanceMetadata
但这在这里不起作用。设置source_profile
为default
也会导致错误:
The source profile "default" must have credentials.
如何在 AWS CloudShell 中创建 CLI 配置文件以持久承担另一个角色?