3
3

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.

IAMで請求情報(Billing & Cost Management)だけ表示できるポリシー

Posted at

AWSのIAMで請求情報(Billing & Cost Management)だけ表示できるポリシーの書き方メモ。
経理担当の方などでお金の情報は見たいけど、それ以外は触ってほしくないみたいな時に有用です。

以下のカスタムポリシーを作って、該当のユーザorグループにアタッチすればOKです。

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

普通はパスワード変更も必要だと思うので、パス変できるポリシーはこちらも参照。
IAMで自分のパスワード変更だけできるポリシー

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?