Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

AWS Identity and Access Management (IAM) is a web service that helps to securely control user access to AWS resources through authentication and authorization. For more information on IAM, refer to Using IAM user guide.

An IAM role to launch SBC HA instance in AWS is required. The minimum requirement for creating an IAM role policy is shown below. 

Code Block
{
   "Version": "2012-10-17",
   "Statement": [
                  {
                     "Effect": "Allow",
                     "Action": [
                     "ec2:AllocateAddress",
                     "ec2:AssignPrivateIpAddresses",
                     "ec2:AssociateAddress",
                     "ec2:AttachNetworkInterface",
                     "ec2:DisassociateAddress",
                     "ec2:DescribeInstances",
                     "ec2:DescribeNetworkInterfaces"
                       ],
                   "Resource": "*"
                  }
                ]
}
Info

For more information on creating and using IAM roles and policies, refer to AWS online documentation at IAM Roles and IAM Policies.

Noprint
Panel
bgColortransparent
borderWidth2

Continue to Creating Placement Groups

Pagebreak