How to login with new IAM user

狂风中的少年 提交于 2019-12-11 15:55:09

问题


I can not login with new IAM user who has console access:

I have downloaded credentials and when trying to login using given console url(https://My_AWS_Account_ID.signin.aws.amazon.com/console/) and I am receiving following error:

Your authentication information is incorrect. Please try again.

This is a policy summary for user:

{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "s3:*", "Resource": "my-s3-arn" } ] }

I have tried to manage and change password for this user and to login again but the same error appears:

Any idea how to login or troubleshout problem?


回答1:


I believe this user is not having the permissions for accessing AWS console, While creating user you need to select the access type for AWS Management Console Access that will provide the username and select the custom password that you can decide on console directly and also give below permissions just for testing.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "*",
            "Resource": "*"
        }
    ]
}



来源:https://stackoverflow.com/questions/49273372/how-to-login-with-new-iam-user

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!