LoginSignup
0
0

【AWS - IAM】DescribeInstancesアクションを特定のリソースに対して設定する

Posted at

やったこと

AWSのIAMでEC2のDescribeInstancesアクションを特定のリソースに対して設定した。

"Action": "ec2:DescribeInstances",
"Resource": "arn:aws:ec2:xxxxxx:xxxxx:*"

エラー内容

This policy defines some actions, resources, or conditions that do not provide permissions. To grant access, policies must have an action that has an applicable resource or condition.

原因

DescribeInstancesは特定のリソースに対してのみ実行するということができない。

解決法

全てのリソースを指定する。

"Action": "ec2:DescribeInstances",
"Resource": "*"

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0