1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[AWS] IAMユーザで請求書ページにアクセスするための罠

Last updated at Posted at 2016-01-31

IAMのPermissionsでPolicyさえ書けばいけると思ったらそれだけじゃなかった

ちなみにUser PollicyはGenerateできるけど、こんな感じ

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

rootアカウントでの設定が必要です

rootアカウントでAMCにログインして、アカウント設定画面を開きます。
そこでここのIAM User Accessの値を有効にしないとダメみたいです。

スクリーンショット_2015-12-16_10.51.31.png

しかも設定が反映されるのに数分時間がかかりました。
ちょっとハマったので共有です。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?