You can use Resource Access Management (RAM) to grant different image permissions to RAM users. You can also use Security Token Service (STS) to grant temporary image permissions to your image users.
Prerequisites
A RAM user is created by using your Alibaba Cloud account. For more information, see Create a RAM user.
Background information
Alibaba Cloud allows you to use Resource Access Management (RAM) and Security Token Service (STS) to control access to image repositories in a flexible and secure way. By default, an Alibaba Cloud account has full access permissions on the resources that belong to the account. You can use RAM and STS to grant different permissions on image resources to different RAM users and provide temporary access permissions. Before you configure authorization policies, read RAM documentation.
After you configure authorization policies for a RAM user, you must use the RAM user to log on to the Container Registry console, create a Personal Edition instance, and set a password for the registry before you can view the images on which the RAM user has permissions.
Grant permissions to a RAM user
Before you grant permissions to a RAM user, make sure that you do not grant permissions more than necessary to the RAM user.
You may grant a RAM user the AdministratorAccess permission that contains management permissions on all Alibaba Cloud resources. In this case, the RAM user has all permissions on Container Registry, regardless of whether the RAM user is granted permissions before.
Attach system policies to a RAM user
By default, the AliyunContainerRegistryFullAccess and AliyunContainerRegistryReadOnlyAccess policies are created for Container Registry. You can directly attach the policies to a RAM user. The following part describes the system policies:
AliyunContainerRegistryFullAccess
This policy grants a RAM user the same permissions on image resources as those of an Alibaba Cloud account. The RAM user can perform all operations on image resources.
{ "Statement": [ { "Action": "cr:*", "Effect": "Allow", "Resource": "*" } ], "Version": "1" }
AliyunContainerRegistryReadOnlyAccess
This policy grants a RAM user the read-only permissions on all image resources. For example, the RAM user can view the repository list and pull images.
{ "Statement": [ { "Action": [ "cr:Get*", "cr:List*", "cr:PullRepository" ], "Effect": "Allow", "Resource": "*" } ], "Version": "1" }
In this example, the AliyunContainerRegistryReadOnlyAccess policy is attached to a RAM user.
Log on to the RAM console as a RAM administrator.
In the left-side navigation pane, choose .
On the Users page, find the required RAM user, and click Add Permissions in the Actions column.
You can also select multiple RAM users and click Add Permissions in the lower part of the page to grant permissions to the RAM users at a time.
In the Grant Permission panel, grant permissions to the RAM user.
Configure the Resource Scope parameter.
Account: The permissions take effect on the current Alibaba Cloud account.
ResourceGroup: The permissions take effect on a specific resource group.
NoteIf you select ResourceGroup for the Resource Scope parameter, make sure that the cloud service supports resource groups. For more information, see Services that work with Resource Group.
Specify a principal.
The principal is the RAM user to which you want to grant permissions. By default, the current RAM user is specified. You can also specify another RAM user.
Click All Types in the Policy section, select Custom Policy from the drop-down list, enter AliyunContainerRegistryReadOnlyAccess in the search box, and then click AliyunContainerRegistryReadOnlyAccess to add the policy to the Selected Policy box.
Click Grant permissions.
Click Close.
Attach custom policies to a RAM user
If you want to enforce fine-grained control on permissions, you can create custom policies and attach the custom policies to RAM users.
Policy configurations in typical scenarios
The following part describes how to configure custom policies in typical scenarios:
Scenario 1: Grant a RAM user the read permission on a namespace. In this example, the namespace is named juzhong.
After the RAM user logs on to the Container Registry instance, the RAM user can pull all images in the namespace juzhong. The RAM user can view information about the namespace and all repositories in the namespace by calling API operations.
{ "Statement": [ { "Action": [ "cr:Get*", "cr:List*", "cr:PullRepository" ], "Effect": "Allow", "Resource": [ "acs:cr:*:*:repository/juzhong/*" ] } ], "Version": "1" }
ImportantIf you want to allow the RAM user to view all namespaces in the Container Registry console, add the following authorization configurations. Then, the RAM user can view all namespaces and repositories. However, the RAM user can only pull images from repositories in the namespace juzhong.
{ "Statement": [ { "Action": [ "cr:Get*", "cr:List*", "cr:PullRepository" ], "Effect": "Allow", "Resource": [ "acs:cr:*:*:repository/juzhong/*" ] }, { "Action": [ "cr:ListNamespace", "cr:ListRepository" ], "Effect": "Allow", "Resource": [ "*" ] } ], "Version": "1" }
Scenario 2: Grant all permissions on a repository to a RAM user. In this example, the repository is named nginx and is located in the namespace juzhong in the China (Hangzhou) region.
ImportantIf you want to allow the RAM user to manage repositories in the Container Registry console, add relevant configurations by referring to scenario 1.
{ "Statement": [ { "Action": [ "cr:*" ], "Effect": "Allow", "Resource": [ "acs:cr:cn-hangzhou:*:repository/juzhong/nginx" ] }, { "Action": [ "cr:Get*", "cr:List*" ], "Effect": "Allow", "Resource": [ "acs:cr:*:*:repository/juzhong" ] } ], "Version": "1" }
Scenario 3: Grant all permissions on a namespace to a RAM user.
ImportantYou can implement the scenario only by calling API operations. If you want to allow the user to view all repositories in the Container Registry console, add relevant configurations by referring to scenario 1.
{ "Statement": [ { "Action": [ "cr:*" ], "Effect": "Allow", "Resource": [ "acs:cr:cn-hangzhou:*:repository/juzhong", "acs:cr:cn-hangzhou:*:repository/juzhong/*" ] } ], "Version": "1" }
You can create a custom policy by using the scripts introduced in the preceding scenarios and attach the custom policy to the RAM user. To do this, perform the following operations:
Create a custom policy.
Log on to the RAM console by using your Alibaba Cloud account.
In the left-side navigation pane, choose .
On the Policies page, click Create Policy.
On the Create Policy page, click the JSON tab and edit the policy document in the code editor. For more information about the policy syntax, see Policy structure and syntax.
NoteFor more information about how to set the
Action
andResource
parameters when you edit the policy document, see Authentication rules for Container Registry.Click Next to edit policy information. In the dialog box that appears, set Name and Note.
Click OK.
Attach the custom policy to a RAM user
Log on to the RAM console by using your Alibaba Cloud account.
In the left-side navigation pane, choose .
On the Users page, find the RAM user to which you want to attach the custom policy, and click Add Permissions in the Actions column.
In the Grant Permission panel, grant permissions to the RAM user.
Select the authorization scope.
Account: The authorization takes effect on the current Alibaba Cloud account.
ResourceGroup: The authorization takes effect for a specific resource group.
NoteIf you select ResourceGroup for the Resource Scope parameter, make sure that the cloud service supports resource groups. For more information, see Services that work with Resource Group.
Specify a principal.
The principal is the RAM user to which you want to grant permissions. By default, the current RAM user is specified. You can also specify another RAM user.
Click Custom Policy below All Types from the drop-down list, enter a custom policy name in the search box to search for the custom policy, and then click the name of the custom policy.
Click Grant permissions.
Click Close.
Authentication rules of Container Registry
ARN format
The following table describes the Alibaba Cloud Resource Name (ARN) format in an authorization policy when you use RAM to grant permissions to users.
Resource | ARN format |
repository | acs:cr:$regionid:$accountid:repository/$namespacename/$repositoryname |
The following table describes the parameters in the ARN format.
Parameter | Description |
regionid | The ID of the region. You can replace the region ID with an asterisk (*). |
accountid | The ID of the Alibaba Cloud account. You can replace the account ID with an asterisk (*). |
namespacename | The name of the namespace. |
repositoryname | The name of the image repository. |