Pause Pilot

Required AWS IAMs Policy/Role

  1. Create an IAMs Policy with the JSON block below
  2. Create an IAMs Role that uses this policy.
  3. Attach that Role to your Pause Pilot EC2 instance.
  4. In the EC2 Console, select your Pause Pilot instance → Actions → Security → Modify IAM Role → choose your new Role.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "EC2Permissions",
      "Effect": "Allow",
      "Action": [
        "ec2:StartInstances",
        "ec2:StopInstances",
        "ec2:DescribeRegions",
        "ec2:DescribeInstances"
      ],
      "Resource": "*"
    }
  ]
}   

Need Help?