AWS Load Balancer IAM 只读规则错误
AWS LoadBalancer IAM Readonly Rule Error
我已创建自定义 IAM 策略以拥有对负载均衡器的读取权限。但是我收到错误...
An error occurred fetching load balancer data: User:
arn:aws:iam::000000000000:user/xxxxxxxx is not authorized to
perform: elasticloadbalancing:DescribeLoadBalancers
政策如下。
{
"Version": "2012-10-17",
"Statement":[{
"Effect": "Allow",
"Action": [
"elasticloadbalancing:Describe*",
],
"Resource": "arn:aws:elasticloadbalancing:us-west-2:000000000000:loadbalancer/*"
}]
}
请有人帮忙。
谢谢
斯里坎斯
这是我找到的解决方案。以下是政策。
只读 AWS LB 访问策略:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"elasticloadbalancing:Describe*"
],
"Resource": "*"
}
]
}
我已创建自定义 IAM 策略以拥有对负载均衡器的读取权限。但是我收到错误...
An error occurred fetching load balancer data: User: arn:aws:iam::000000000000:user/xxxxxxxx is not authorized to perform: elasticloadbalancing:DescribeLoadBalancers
政策如下。
{
"Version": "2012-10-17",
"Statement":[{
"Effect": "Allow",
"Action": [
"elasticloadbalancing:Describe*",
],
"Resource": "arn:aws:elasticloadbalancing:us-west-2:000000000000:loadbalancer/*"
}]
}
请有人帮忙。
谢谢
斯里坎斯
这是我找到的解决方案。以下是政策。
只读 AWS LB 访问策略:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"elasticloadbalancing:Describe*"
],
"Resource": "*"
}
]
}