【发布时间】:2018-06-04 08:06:02
【问题描述】:
我创建了一个限制用户访问单个实例的策略:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1392113879000",
"Effect": "Allow",
"Action": [
"ec2:*"
],
"Resource": [
"arn:aws:ec2:us-east-1:account:instance/instance_id"
]
}
]
}
但我收到此错误:
You are not authorized to describe Running Instances
You are not authorized to describe Elastic IPs
You are not authorized to describe Volumes
You are not authorized to describe Snapshots
You are not authorized to describe Key Pairs
You are not authorized to describe Load Balancers
You are not authorized to describe Placement Groups
You are not authorized to describe Security Groups
我无法在控制台中看到该实例。如果我不能实现这件事,那还有什么用策略!
我卡住了,请帮忙
【问题讨论】:
标签: amazon-web-services amazon-ec2 amazon-iam