开发者

AWS Management Console - change default from S3?

I have nothing against S3, but just don't us开发者_C百科e it. Every single time I log into the AWS management console the one thing I want to do is manage my EC2 instances.

Does anyone know how to simply make EC2 the default item on my console screen?


I haven't found any configuration for this either but I do use a very simple workaround. Bookmark your favored default.

E.g. if you want to land on ec2, region eu-west after you login you would use:

https://console.aws.amazon.com/ec2/home?region=eu-west-1


If you click on the orange cube tab on the far left of the tabs on the console page, there is a dropdown that allows you to set the defaulr service page called:

Set Start Page


you need to create new policy and need to add below line in JSON

"Condition": {"StringEquals": {"aws:RequestedRegion": "ap-south-1"}}

below is my entire json for Mumbai region

   {
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "*",
            "Resource": "*",
            "Condition": {
                "StringEquals": {
                    "aws:RequestedRegion": "ap-south-1"
                }
            }
        }
    ]
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜