User has Console access but needs Console permissions

0

One of my users needs to generate Keys but has no permissions for that or any other default console action. He has a password and is able to login to the console and can change his password but that's the only access he has. His console access is enabled. Please see attached screen captures.

Please let me know if there any other details you might require to help me with this issue.

Thank you

My security credentials Manage console access

已提问 1 年前269 查看次数
2 回答
1
已接受的回答

Hi.

Do you want to give the user permission to generate keys?
Please refer to the following and give iam:CreateAccessKey permission to user.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "CreateOwnAccessKeys",
            "Effect": "Allow",
            "Action": [
                "iam:CreateAccessKey",
                "iam:GetUser",
                "iam:ListAccessKeys"
            ],
            "Resource": "arn:aws:iam::*:user/${aws:username}"
        }
    ]
}

https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html

profile picture
专家
iwasa
已回答 1 年前
  • Seems strange that this is not an AWS managed policy. That would certainly make it easier to find.

    Thanks for your help. I appreciate it very much.

1

The user is able to login to the console this is authentication. User will require authorization before they can perform any actions. You will need to attach a access policy to the user account before any actions can be performed.

For more details, please refers to:

AWS
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则