AccessDeniedException on aws when i'm trying to raise a support ticket

烈酒焚心 提交于 2019-12-24 00:35:44

问题


i just referred to this question AmazonServiceException: User is not authorized to perform: dynamodb:DescribeTable Status Code: 400; Error Code: AccessDeniedException which has similar error. but it doesn't help me.

I'm getting this error when i try to raise a support ticket:

Invalid Input

User: arn:aws:iam::44324457964845364:user/testetest is not authorized to perform: support: (Service: AWSSupport; Status Code: 400; Error Code: AccessDeniedException; Request ID: 65dq34fedq234rde9-adqwef443432fasd-13q4wf4qqrf-9q34fewq431-9fasdff3wefw43efw3eas5b4)

this is the link i'm using https://console.aws.amazon.com/support


回答1:


See: Accessing AWS Support

Unless you are a power user or administrative user, by default you do not have the privilege to raise a support ticket. Have your IAM administrator add an IAM policy like this so that you can raise a support ticket.

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

It is same as the IAM policy document: AWSSupportAccess



来源:https://stackoverflow.com/questions/34488538/accessdeniedexception-on-aws-when-im-trying-to-raise-a-support-ticket

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