Skip to content

Commit 06e47ba

Browse files
authored
DEVPROD-3933: replace example S3 bucket names with safe placeholders (#1115)
1 parent 5ec8e06 commit 06e47ba

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/docs/examples/storage/aws/s3/CONFLUENCE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Since 8.1.0 Confluence supports storing attachments in AWS S3. To enable this fe
66
tag: 8.1.0
77
confluence:
88
s3AttachmentsStorage:
9-
bucketName: confluence-attachments-bucket
9+
bucketName: <your-confluence-bucket-name>
1010
bucketRegion: us-east-1
1111
```
1212
@@ -58,8 +58,8 @@ Below is an example policy, providing appropriate S3 access to Confluence, that
5858
],
5959
"Effect": "Allow",
6060
"Resource": [
61-
"arn:aws:s3:::confluence-attachments-bucket/*",
62-
"arn:aws:s3:::confluence-attachments-bucket"
61+
"arn:aws:s3:::<your-confluence-bucket-name>/*",
62+
"arn:aws:s3:::<your-confluence-bucket-name>"
6363
],
6464
"Sid": ""
6565
}

docs/docs/examples/storage/aws/s3/JIRA.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tag: 9.9.0
77
jira:
88
s3Storage:
99
avatars:
10-
bucketName: jira-avatars-bucket
10+
bucketName: <your-jira-bucket-name>
1111
bucketRegion: us-east-1
1212
```
1313
@@ -59,8 +59,8 @@ Below is an example policy, providing appropriate S3 access to Jira, that needs
5959
],
6060
"Effect": "Allow",
6161
"Resource": [
62-
"arn:aws:s3:::jira-avatars-bucket/*",
63-
"arn:aws:s3:::jira-avatars-bucket"
62+
"arn:aws:s3:::<your-jira-bucket-name>/*",
63+
"arn:aws:s3:::<your-jira-bucket-name>"
6464
],
6565
"Sid": ""
6666
}

0 commit comments

Comments
 (0)