I have an IAM user that has admin access. This user cannot access the Account Activity or Account Usage page. They see the message "Permission denied" with "You do not have the required permissions to view the contents of this page." These are the steps I followed to give them access:
- Logged in as root.
- Configured my security issues.
- Enable IAM user access to the AWS website.
- The user added the following policies:
a) To access your account
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "aws-portal:ViewBilling" ], "Resource": "*" } ] }
b) Access to account use
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "aws-portal:ViewUsage" ], "Resource": "*" } ] }
However, the user cannot access the account and the account usage pages.
Can someone tell me what's wrong here?
source share