Step 3: Set Up IAM Permissions - Amazon Interactive Video Service

Step 3: Set Up IAM Permissions

Next, you must create an AWS Identity and Access Management (IAM) policy that gives users a basic set of permissions (e.g., to create an Amazon IVS channel, get streaming information, and auto-record-to-S3) and assign that policy to users. You can either assign the permissions when creating a new user or add permissions to an existing user. Both procedures are given below.

For more information (for example, to learn about IAM users and policies, how to attach a policy to a user, and how to constrain what users can do with Amazon IVS), see:

You can either use an existing AWS managed policy for Amazon IVS or create a new policy that customizes the permissions you want to grant to a set of users, groups, or roles. Both approaches are described below.

Use an Existing Policy for IVS Permissions

In most cases, you will want to use an AWS managed policy for Amazon IVS. They are described fully in the Managed Policies for IVS section of IVS Security.

  • Use the IVSReadOnlyAccess AWS managed policy to give your application developers access to all IVS Get and List API endpoints (for both low-latency and real-time streaming).

  • Use the IVSFullAccess AWS managed policy to give your application developers access to all IVS API endpoints (for both low-latency and real-time streaming).

Optional: Create a Custom Policy for Amazon IVS Permissions

Follow these steps:

  1. Sign in to the AWS Management Console and open the IAM console at https://console.aws.amazon.com/iam/.

  2. In the navigation pane, choose Policies, then choose Create policy. A Specify permissions window opens..

  3. In the Specify permissions window, choose the JSON tab, and copy and paste the following IVS policy to the Policy editor text area. (The policy does not include all Amazon IVS actions. You can add/delete (Allow/Deny) endpoint access permissions as needed. See IVS Low-Latency Streaming API Reference for details on IVS endpoints.)

    { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "ivs:CreateChannel", "ivs:CreateRecordingConfiguration", "ivs:GetChannel", "ivs:GetRecordingConfiguration", "ivs:GetStream", "ivs:GetStreamKey", "ivs:GetStreamSession", "ivs:ListChannels", "ivs:ListRecordingConfigurations", "ivs:ListStreamKeys", "ivs:ListStreams", "ivs:ListStreamSessions" ], "Resource": "*" }, { "Effect": "Allow", "Action": [ "cloudwatch:DescribeAlarms", "cloudwatch:GetMetricData", "s3:CreateBucket", "s3:GetBucketLocation", "s3:ListAllMyBuckets", "servicequotas:ListAWSDefaultServiceQuotas", "servicequotas:ListRequestedServiceQuotaChangeHistoryByQuota", "servicequotas:ListServiceQuotas", "servicequotas:ListServices", "servicequotas:ListTagsForResource" ], "Resource": "*" }, { "Effect": "Allow", "Action": [ "iam:AttachRolePolicy", "iam:CreateServiceLinkedRole", "iam:PutRolePolicy" ], "Resource": "arn:aws:iam::*:role/aws-service-role/ivs.amazonaws.com/AWSServiceRoleForIVSRecordToS3*" } ] }
  4. Still in the Specify permissions window, choose Next (scroll to the bottom of the window to see this). A Review and create window opens.

  5. On the Review and create window, enter a Policy name and optionally add a Description. Make a note of the policy name, as you will need it when creating users (below). Choose Create policy (at the bottom of the window).

  6. You are returned to the IAM console window, where you should see a banner confirming that your new policy was created.

Create a New User and Add Permissions

IAM User Access Keys

IAM Access keys consist of an access key ID and a secret access key. They are used to sign programmatic requests that you make to AWS. If you don't have access keys, you can create them from the AWS Management Console. As a best practice, do not create root-user access keys.

The only time that you can view or download a secret access key is when you create access keys. You cannot recover them later. However, you can create new access keys at any time; you must have permissions to perform the required IAM actions.

Always store access keys securely. Never share them with third parties (even if an inquiry seems to come from Amazon). For more information, see Managing access keys for IAM users in the IAM User Guide.

Procedure

Follow these steps:

  1. In the navigation pane, choose Users, then choose Create user. A Specify user details window opens.

  2. In the Specify user details window:

    1. Under User details, type the new User name to be created.

    2. Check Provide user access to the AWS Management Console.

    3. When prompted, select I want to create an IAM user.

    4. Under Console password, select Autogenerated password.

    5. Check Users must create a new password at next sign-in.

    6. Choose Next. A Set permissions window opens.

  3. Under Set permissions, select Attach policies directly. A Permissions policies window opens.

  4. In the search box, enter an IVS policy name (either an AWS managed policy or your previously created custom policy). When it is found, check the box to select the policy.

  5. Choose Next (at the bottom of the window). A Review and create window opens.

  6. On the Review and create window, confirm that all user details are correct, then choose Create user (at the bottom of the window).

  7. The Retrieve password window opens, containing your Console sign-in details. Save this information securely for future reference. When you are done, choose Return to users list.

Add Permissions to an Existing User

Follow these steps:

  1. Sign in to the AWS Management Console and open the IAM console at https://console.aws.amazon.com/iam/.

  2. In the navigation pane, choose Users, then choose an existing user name to be updated. (Choose the name by clicking on it; do not check the selection box.)

  3. On the Summary page, on the Permissions tab, choose Add permissions. An Add permissions window opens.

  4. Select Attach existing policies directly. A Permissions policies window opens.

  5. In the search box, enter an IVS policy name (either an AWS managed policy or your previously created custom policy). When the policy is found, check the box to select the policy.

  6. Choose Next (at the bottom of the window). A Review window opens.

  7. On the Review window, select Add permissions (at the bottom of the window).

  8. On the Summary page, confirm that the IVS policy was added.