【发布时间】: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
我有什么遗漏吗?会是什么?
【问题讨论】: