Skip to content

Commit f697599

Browse files
authored
Merge pull request #9638 from circleci/NOTIFY-376-improve-permissions-checks
[NOTIFY-376] improve and simplify permissions checks for audit logs streaming
2 parents 23d54ee + 9e6a1f3 commit f697599

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/guides/modules/security/pages/audit-logs.adoc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,10 @@ The minimum required access policy for the role is as follows:
141141
{
142142
"Effect": "Allow",
143143
"Action": [
144-
"s3:PutObject",
145-
"s3:ListBucket"
144+
"s3:PutObject"
146145
],
147146
"Resource": [
148-
"arn:aws:s3:::<bucket-name>/*",
149-
"arn:aws:s3:::<bucket-name>"
147+
"arn:aws:s3:::<bucket-name>/*"
150148
]
151149
}
152150
]
@@ -189,6 +187,7 @@ image::guides:ROOT:connect-circleci-aws.png[Connect CircleCI to AWS]
189187
+
190188
image::guides:ROOT:s3bucket-connected.png[S3 Connection successful]
191189

190+
Creating a streaming configuration pushes an empty file named `circleci_connectivity_test_<timestamp>` to the configured bucket. This verifies that the system has sufficient permissions to start the stream.
192191

193192
==== 3. Verify and test
194193

0 commit comments

Comments
 (0)