Skip to content

Commit 891339f

Browse files
committed
DOC-146 clarifications
1 parent 94c047f commit 891339f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/connections/data-residency.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Local Data Storage allows you to preserve your raw events in Amazon S3 buckets h
4242

4343
To begin with Local Data Storage, complete the following steps in your AWS account:
4444

45-
1. Create an S3 bucket in the preferred region
45+
1. Create an S3 bucket in your preferred region
4646
2. Create a folder named `segment-logs` in the new bucket
4747
3. Edit the bucket policy to allow Segment access to the S3 bucket
4848
```json
@@ -64,7 +64,7 @@ To begin with Local Data Storage, complete the following steps in your AWS accou
6464
```
6565
**Note**: `Resource` property string must end with `/*`.
6666

67-
Segment requires this access to write raw data to your regionally hosted S3 bucket. Specifically, this allows Segment to use `s3:PutObject`. To enable encryption at rest, use the default S3 mechanism. If you have server-side encryption enabled with AWS KMS managed keys, see the additional [required configuration step](/docs/connections/storage/catalog/amazon-s3/#encryption). To edit the bucket policy, right-click the bucket name in the AWS management console, and select **Edit policy**.
67+
Segment requires this access to write raw data to your regionally hosted S3 bucket. Specifically, this allows Segment (as the Segment S3-copy user) to use `s3:PutObject`. To enable encryption at rest, use the default S3 mechanism. If you have server-side encryption enabled with AWS KMS managed keys, see the additional [required configuration step](/docs/connections/storage/catalog/amazon-s3/#encryption). To edit the bucket policy, right-click the bucket name in the AWS management console, and select **Edit policy**.
6868

6969
4. Create a new IAM role in your AWS account with a trust relationship to the role which allows Segment to use the Segment `workspace_id` as `externalID`.
7070
```json
@@ -101,7 +101,6 @@ To begin with Local Data Storage, complete the following steps in your AWS accou
101101
"Effect": "Allow",
102102
"Action": "s3:ListBucket",
103103
"Resource": [
104-
"arn:aws:s3:::YOUR_BUCKET_NAME/*",
105104
"arn:aws:s3:::YOUR_BUCKET_NAME"
106105
]
107106
},
@@ -111,7 +110,6 @@ To begin with Local Data Storage, complete the following steps in your AWS accou
111110
"Action": "s3:*Object*",
112111
"Resource": [
113112
"arn:aws:s3:::YOUR_BUCKET_NAME/*",
114-
"arn:aws:s3:::YOUR_BUCKET_NAME"
115113
]
116114
}
117115
]
@@ -139,7 +137,7 @@ To begin with Local Data Storage, complete the following steps in your AWS accou
139137

140138
### Local Data Storage configuration
141139

142-
After you configure the policy and roles, as defined above, navigate to the Settings tab of the source for which you want to store data regionally, and find the Local Data Storage section.
140+
After you configure the policy and roles, as defined above, navigate to the Regional Settings tab of the Settings page of the source for which you want to store data regionally, and find the Local Data Storage section.
143141

144142
![local storage](images/regional-data-source.png)
145143

0 commit comments

Comments
 (0)