s3.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "identities": [
  3. {
  4. "name": "anonymous",
  5. "actions": [
  6. "Read"
  7. ]
  8. },
  9. {
  10. "name": "some_admin_user",
  11. "credentials": [
  12. {
  13. "accessKey": "some_access_key1",
  14. "secretKey": "some_secret_key1"
  15. }
  16. ],
  17. "actions": [
  18. "Admin",
  19. "Read",
  20. "List",
  21. "Tagging",
  22. "Write"
  23. ]
  24. },
  25. {
  26. "name": "s3_tests",
  27. "credentials": [
  28. {
  29. "accessKey": "ABCDEFGHIJKLMNOPQRST",
  30. "secretKey": "abcdefghijklmnopqrstuvwxyzabcdefghijklmn"
  31. },
  32. {
  33. "accessKey": "0555b35654ad1656d804",
  34. "secretKey": "h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q=="
  35. }
  36. ],
  37. "actions": [
  38. "Admin",
  39. "Read",
  40. "List",
  41. "Tagging",
  42. "Write"
  43. ],
  44. "account": {
  45. "id": "testid"
  46. }
  47. },
  48. {
  49. "name": "s3_tests_alt",
  50. "credentials": [
  51. {
  52. "accessKey": "NOPQRSTUVWXYZABCDEFG",
  53. "secretKey": "nopqrstuvwxyzabcdefghijklmnabcdefghijklm"
  54. }
  55. ],
  56. "actions": [
  57. "Admin",
  58. "Read",
  59. "List",
  60. "Tagging",
  61. "Write"
  62. ]
  63. },
  64. {
  65. "name": "s3_tests_tenant",
  66. "credentials": [
  67. {
  68. "accessKey": "HIJKLMNOPQRSTUVWXYZA",
  69. "secretKey": "opqrstuvwxyzabcdefghijklmnopqrstuvwxyzab"
  70. }
  71. ],
  72. "actions": [
  73. "Admin",
  74. "Read",
  75. "List",
  76. "Tagging",
  77. "Write"
  78. ]
  79. },
  80. {
  81. "name": "some_read_only_user",
  82. "credentials": [
  83. {
  84. "accessKey": "some_access_key2",
  85. "secretKey": "some_secret_key2"
  86. }
  87. ],
  88. "actions": [
  89. "Read"
  90. ]
  91. },
  92. {
  93. "name": "some_normal_user",
  94. "credentials": [
  95. {
  96. "accessKey": "some_access_key3",
  97. "secretKey": "some_secret_key3"
  98. }
  99. ],
  100. "actions": [
  101. "Read",
  102. "List",
  103. "Tagging",
  104. "Write"
  105. ]
  106. }
  107. ],
  108. "accounts": [
  109. {
  110. "id" : "testid",
  111. "displayName": "M. Tester",
  112. "emailAddress": "tester@ceph.com"
  113. }
  114. ]
  115. }