We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b17cfe commit a4ea3c9Copy full SHA for a4ea3c9
README.md
@@ -205,10 +205,22 @@ spec:
205
# Content of the policy, as a multiline string
206
# This should be IAM compliant JSON - follow the guidelines of the actual
207
# S3 provider you're using, as sometimes only a subset is available.
208
+ # The first Statement (Allow ListBucket) should be applied to every user,
209
+ # as s3-operator uses this call to verify that credentials are valid when
210
+ # reconciling an existing user.
211
policyContent: >-
212
{
213
"Version": "2012-10-17",
214
"Statement": [
215
+ {
216
+ "Effect": "Allow",
217
+ "Action": [
218
+ "s3:ListBucket"
219
+ ],
220
+ "Resource": [
221
+ "arn:aws:s3:::*"
222
+ ]
223
+ },
224
225
"Effect": "Allow",
226
"Action": [
0 commit comments