Skip to content

IAMユーザにcost explorerのみ許可する方法

0

「請求とコスト管理」にて、IAMユーザ(ポリシー:PowerUserAccess のみ付与)に対し、 Cost Explorer で表示される日々の金額の推移のみ表示させる方法をご教示願いたいです。 (IAMユーザがサインイン後、コンソールに表示される「コストと使用状況」の個所を表示) ※当AWSアカウントでは、AWS Organizations は使用していません

asked a year ago273 views

1 Answer
0

PowerUserAccessは請求関連以外のアクションも許可されているポリシーなので以下のドキュメントに記載されている請求に関連するマネージドポリシーを用途に合わせてアタッチしてみるのがよいと思います。
https://docs.aws.amazon.com/ja_jp/awsaccountbilling/latest/aboutv2/managed-policies.html

ちなみにCost Explorerだけ操作を許可したいということであれば以下のポリシーを設定すればCost Explorerの全操作が許可されます。

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

answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.