AWS managed policies for AWS DeepRacer
To add permissions to users, groups, and roles, it is easier to use AWS managed policies than to write policies yourself. It takes time and expertise to create IAM customer managed policies that provide your team with only the permissions they need. To get started quickly, you can use our AWS managed policies. These policies cover common use cases and are available in your AWS account. For more information about AWS managed policies, see AWS managed policies in the IAM User Guide.
AWS services maintain and update AWS managed policies. You can't change the permissions in AWS managed policies. Services occasionally add additional permissions to an AWS managed policy to support new features. This type of update affects all identities (users, groups, and roles) where the policy is attached. Services are most likely to update an AWS managed policy when a new feature is launched or when new operations become available. Services do not remove permissions from an AWS managed policy, so policy updates won't break your existing permissions.
Additionally, AWS supports managed policies for job functions that span multiple
services. For example, the ViewOnlyAccess
AWS managed policy provides read-only access to many AWS services and resources. When a service launches a new feature, AWS adds read-only
permissions for new operations and resources. For a list and descriptions of job function
policies, see AWS managed policies for job functions in
the IAM User Guide.
The following AWS-managed policies are specific to using AWS DeepRacer multi-user mode to sponsor multiple participants under your AWS account.
-
AWSDeepRacerAccountAdminAccess
Grants required AWS DeepRacer permissions for multi-user account admin. -
AWSDeepRacerDefaultMultiUserAccess
Grants required AWS DeepRacer permissions to use the AWS DeepRacer console.
Topics
AWSDeepRacerAccountAdminAccess managed policy for AWS DeepRacer administrators
To enable multiple profiles to use your AWS account ID and billing information with AWS DeepRacer, attach the
AWSDeepRacerAccountAdminAccess
policy.
You can attach the AWSDeepRacerAccountAdminAccess
policy to the IAM identity you want to use for
sponsoring other racers.
{ "Version": "2012-10-17", "Statement": [ { "Sid": "DeepRacerAdminAccessStatement", "Effect": "Allow", "Action": [ "deepracer:*" ], "Resource": [ "*" ], "Condition": { "Null": { "deepracer:UserToken": "true" } } } ] }
AWSDeepRacerDefaultMultiUserAccess managed policy for AWS DeepRacer multi-user racers
The policy, AWSDeepRacerDefaultMultiUserAccess
, gives AWS DeepRacer racers access to all AWS DeepRacer actions except
multi-user account admin actions.
You can attach the AWSDeepRacerDefaultMultiUserAccess
policy to the IAM identities of participants you
want to sponsor under your account.
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "deepracer:Add*", "deepracer:Remove*", "deepracer:Create*", "deepracer:Perform*", "deepracer:Clone*", "deepracer:Get*", "deepracer:List*", "deepracer:Edit*", "deepracer:Start*", "deepracer:Set*", "deepracer:Update*", "deepracer:Delete*", "deepracer:Stop*", "deepracer:Import*", "deepracer:Tag*", "deepracer:Untag*" ], "Resource": [ "*" ], "Condition": { "Null": { "deepracer:UserToken": "false" }, "Bool": { "deepracer:MultiUser": "true" } } }, { "Effect": "Allow", "Action": [ "deepracer:GetAccountConfig", "deepracer:GetTrack", "deepracer:ListTracks", "deepracer:TestRewardFunction" ], "Resource": [ "*" ] }, { "Effect": "Deny", "Action": [ "deepracer:Admin*" ], "Resource": [ "*" ] } ] }
AWS DeepRacer updates to AWS managed policies
View details about updates to AWS managed policies for AWS DeepRacer since this service began tracking these changes. For automatic alerts about changes to this page, subscribe to the RSS feed on the AWS DeepRacer Document history page.
Change | Description | Date |
---|---|---|
|
New managed policies added so you can sponsor multiple participants under one AWS DeepRacer account using multi-user mode. |
October 26, 2021 |
AWS DeepRacer started tracking policy changes. |
AWS DeepRacer started tracking changes for its AWS managed policies. |
October 26, 2021 |