Installing Cloudbreak on AWS
Also available as:
PDF

Create CloudbreakRole

If using role-based authentication, perform these steps to create the CloudbreakRole.

Use the following AssumeRole policy definition:

{
  "Version": "2012-10-17",
  "Statement": {
    "Sid": "Stmt1400068149000",
    "Effect": "Allow",
    "Action": ["sts:AssumeRole"],
    "Resource": "*"
  }
}

Steps

  1. Navigate to the IAM console > Roles and click Create Role:

  2. In the “Create Role” wizard, select AWS service role type and then select any service:

  3. When done, click Next: Permissions to navigate to the next page in the wizard.
  4. Click Create policy and the create policy wizard will open in a new browser tab:

  5. Select the JSON view, and then copy and paste the policy definition. You can either copy it from the section preceding these steps or download and copy it from here.

    .

  6. When done, navigate to Review policy.
  7. On the Review policy page, in the Name field, enter a name for your policy, such as “AssumeRole”:
  8. When done, click Create Policy.
  9. Return to the previous browser tab where you started creating a new role (since the create policy wizard was opened in a new browser tab).
  10. Click Refresh. Next, find the policy that you just created and select it by checking the box:

  11. When done, click Next: Review.
  12. In the Roles name field, enter role name, for example “CloudbreakRole”:

  13. When done, click Create role to finish the role creation process.

As an outcome of this step, the CloudbreakRole should be created in your IAM console on AWS.