How do I grant permissions to other accounts?
Use Resource Access Management (RAM) to grant other accounts access to your SchedulerX resources. RAM provides centralized permission management across all Alibaba Cloud resources.
For step-by-step instructions, see Grant permissions to RAM users.
Why do I get a "not authorized to perform ListUsers" error?
When a RAM user tries to grant permissions to other users in the SchedulerX console, the following error may appear:
The RAM user is not authorized to perform the ListUsers operation.Cause: The RAM user lacks the ram:ListUsers permission, which is required to list available users during permission assignment.
Solution: Sign in with your Alibaba Cloud account and attach the following custom policy to the RAM user:
{
"Version": "1",
"Statement": [
{
"Action": "ram:ListUsers",
"Resource": "*",
"Effect": "Allow"
}
]
}Verify the fix: Sign in as the RAM user and open the SchedulerX console. The permission assignment page should load the user list without errors.