aws sts get-caller-identity

From wikieduonline
Revision as of 11:12, 14 October 2022 by Ant (talk | contribs) (→‎Errors)
Jump to navigation Jump to search

The aws sts get-caller-identity command outputs three pieces of information including the ARN.


ACCOUNT_ID=$(aws sts get-caller-identity --output text --query 'Account')

aws sts get-caller-identity

aws sts get-caller-identity --profile XXXXX


aws sts get-caller-identity
{
    "UserId": "ZIDBZCTGOUKVXXFNQ5Q3F",
    "Account": "09876543212",
    "Arn": "arn:aws:iam::09876543212:user/your_user"
}
{
    "UserId": "AROASTNMATSFIGC3RFZFC:martin.oscar",
    "Account": "09876543212",
    "Arn": "arn:aws:sts::09876543212:assumed-role/AWSReservedSSO_AdministratorAccess_111111111/your-username"
}

Errors

aws sts get-caller-identity
Unable to locate credentials. You can configure credentials by running "aws configure".
aws sts get-caller-identity
An error ocurred (InvalidClientTokenId) when calling the GetCallerIdentity operation: The security token included in the request is invalid

Related

sts:AssumeRole
sts:GetCallerIdentity

See also

Advertising: