LoginSignup
0
0

More than 5 years have passed since last update.

EC2起動時roleをアタッチするときに必要なpolicy

Posted at

​​EC2にロールを使ってアクセス権限を付与する場合、PassRoleアクションを許可するポリシーが作成者に付与されている必要があります。

例)

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "ec2:RunInstances",
      "Action": "iam:PassRole"
      "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