【问题标题】:AWS permissions to access Account and Billing infoAWS 访问账户和账单信息的权限
【发布时间】:2015-08-06 12:21:22
【问题描述】:

我有一个具有管理员权限的 IAM 用户。

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

但是当我尝试访问“/billing”页面时,AWS 说

You are not authorized to perform this operation.
You are currently signed in as an IAM user that does not have permissions to the requested page.

我还尝试生成特定的策略,例如

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

但它不会改变任何东西。我仍然无法访问帐单信息。

当我进入策略模拟页面时,它说允许用户使用权限。

我看过 AWS 指南并尝试遵循它。 http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html

我有什么遗漏吗?会是什么?

【问题讨论】:

    标签: amazon-web-services


    【解决方案1】:

    除了个人账户的权限外,还有一个账户设置可以启用 IAM 用户访问。在billing home page, 向下滚动并查找 IAM 用户对账单信息的访问权限。它可能看起来像这样:

    您需要编辑和更新它以允许 IAM 用户访问:

    【讨论】:

    • 谢谢!真的很有帮助。
    猜你喜欢
    • 2020-11-08
    • 1970-01-01
    • 2023-02-02
    • 2019-02-19
    • 2019-08-08
    • 1970-01-01
    • 1970-01-01
    • 2020-07-17
    • 2014-04-13
    相关资源
    最近更新 更多