aboutsummaryrefslogtreecommitdiff
path: root/docker/compose/s3.json
diff options
context:
space:
mode:
authorbingoohuang <bingoo.huang@gmail.com>2021-02-18 13:57:34 +0800
committerGitHub <noreply@github.com>2021-02-18 13:57:34 +0800
commitc8f56f5712c1efffc46de95a8057ed09c21da2db (patch)
treebc3330e274901d782395b7396cb54d7cc42608b1 /docker/compose/s3.json
parent12a78335860c4b1e220748e4adc4097050af5272 (diff)
parent3575d41009e4367658e75e6ae780c6260b80daf9 (diff)
downloadseaweedfs-c8f56f5712c1efffc46de95a8057ed09c21da2db.tar.xz
seaweedfs-c8f56f5712c1efffc46de95a8057ed09c21da2db.zip
Merge pull request #2 from chrislusf/master
Diffstat (limited to 'docker/compose/s3.json')
-rw-r--r--docker/compose/s3.json105
1 files changed, 105 insertions, 0 deletions
diff --git a/docker/compose/s3.json b/docker/compose/s3.json
new file mode 100644
index 000000000..64dedb681
--- /dev/null
+++ b/docker/compose/s3.json
@@ -0,0 +1,105 @@
+{
+ "identities": [
+ {
+ "name": "anonymous",
+ "actions": [
+ "Read"
+ ]
+ },
+ {
+ "name": "some_admin_user",
+ "credentials": [
+ {
+ "accessKey": "some_access_key1",
+ "secretKey": "some_secret_key1"
+ }
+ ],
+ "actions": [
+ "Admin",
+ "Read",
+ "List",
+ "Tagging",
+ "Write"
+ ]
+ },
+ {
+ "name": "s3_tests",
+ "credentials": [
+ {
+ "accessKey": "ABCDEFGHIJKLMNOPQRST",
+ "secretKey": "abcdefghijklmnopqrstuvwxyzabcdefghijklmn"
+ },
+ {
+ "accessKey": "0555b35654ad1656d804",
+ "secretKey": "h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q=="
+ }
+ ],
+ "actions": [
+ "Admin",
+ "Read",
+ "List",
+ "Tagging",
+ "Write"
+ ]
+ },
+ {
+ "name": "s3_tests_alt",
+ "credentials": [
+ {
+ "accessKey": "NOPQRSTUVWXYZABCDEFG",
+ "secretKey": "nopqrstuvwxyzabcdefghijklmnabcdefghijklm"
+ }
+ ],
+ "actions": [
+ "Admin",
+ "Read",
+ "List",
+ "Tagging",
+ "Write"
+ ]
+ },
+ {
+ "name": "s3_tests_tenant",
+ "credentials": [
+ {
+ "accessKey": "HIJKLMNOPQRSTUVWXYZA",
+ "secretKey": "opqrstuvwxyzabcdefghijklmnopqrstuvwxyzab"
+ }
+ ],
+ "actions": [
+ "Admin",
+ "Read",
+ "List",
+ "Tagging",
+ "Write"
+ ]
+ },
+ {
+ "name": "some_read_only_user",
+ "credentials": [
+ {
+ "accessKey": "some_access_key2",
+ "secretKey": "some_secret_key2"
+ }
+ ],
+ "actions": [
+ "Read"
+ ]
+ },
+ {
+ "name": "some_normal_user",
+ "credentials": [
+ {
+ "accessKey": "some_access_key3",
+ "secretKey": "some_secret_key3"
+ }
+ ],
+ "actions": [
+ "Read",
+ "List",
+ "Tagging",
+ "Write"
+ ]
+ }
+ ]
+} \ No newline at end of file