Scenario You need to authorize the tester to use a specified directory in a bucket of Alibaba Cloud OSS, such as the static/material/ directory of myBuket. step Create a new user Create a new user in RAM access control Create an AccessKey for this user Custom permission policy Enter a name, remarks, and select "Script Configuration" to configure permissions by writing your own script The script content is as follows: { "Version": "1", "Statement": [ { "Effect": "Allow", "Action": "oss:ListObjects", "Resource": "acs:oss:*:*:myBuket", "Condition": { "StringLike": { "oss:Delimiter": "/", "oss:Prefix": [ "", "static/", "static/material/*" ] } } }, { "Effect": "Allow", "Action": "oss:*", "Resource": [ "acs:oss:*:*:myBuket/static/material/*" ] } ] }
Therefore, the script is divided into two parts, namely two Effect configurations: { "Effect": "Allow", "Action": "oss:ListObjects", "Resource": "acs:oss:*:*:myBuket", "Condition": { "StringLike": { "oss:Delimiter": "/", "oss:Prefix": [ "", "static/", "static/material/*" ] } } } The second part configures all permissions of materinal. Action is "oss:*" to indicate all permissions for operating OSS. { "Effect": "Allow", "Action": "oss:*", "Resource": [ "acs:oss:*:*:myBuket/static/material/*" ] } Configure permissions When adding permissions, select the permissions defined above from the custom policy Open OSSbrowser Use the accessKeyId and AccessKeySerect configured above Just click to log in. OSS's API permissions are also controlled in this way. refer to OSS authorization management through OSSborrower This is the end of this article about the implementation of Alibaba Cloud OSS access permission configuration (RAM permission control). For more information about Alibaba Cloud OSS access permission configuration, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL 8.0.21.0 Community Edition Installation Tutorial (Detailed Illustrations)
Table of contents 1. Download nodejs 2. Double-cl...
Copy code The code is as follows: <!--[if IE]&...
Table of contents Single content projection Multi...
Preface Since I needed to install Zookeeper durin...
Table of contents 1. Backup 1.1 Fully prepared 1....
ask: I have styled the hyperlink using CSS, but i...
Introduction to vi/vim They are both multi-mode e...
<br />According to statistics, the average s...
This article records the specific method of insta...
Spring integration with springmvc The web.xml con...
Background <br />Students who work on the fr...
We usually have a scanning box when we open the c...
Table of contents 1. Resource download 2. Unzip t...
Written in front No matter how well the code is w...
This article introduces the method of implementin...