Skip to content

Commit 68a8e78

Browse files
committed
[DOCS] Change bucket names to use "-" instead of "_" in examples
While it's possible to create a bucket with "_" in US Standard region, AWS Java SDK cannot work with such buckets. Changing all examples to use "-" instead of "_" in bucket names. Closes #72
1 parent 7f271fd commit 68a8e78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Here is how it can be configured:
9292
gateway:
9393
type: s3
9494
s3:
95-
bucket: bucket_name
95+
bucket: bucket-name
9696

9797
The following are a list of settings (prefixed with `gateway.s3`) that can further control the s3 gateway:
9898

@@ -109,7 +109,7 @@ The S3 repository is using S3 to store snapshots. The S3 repository can be creat
109109
$ curl -XPUT 'http://localhost:9200/_snapshot/my_s3_repository' -d '{
110110
"type": "s3",
111111
"settings": {
112-
"bucket": "my_backet_name",
112+
"bucket": "my-bucket-name",
113113
"region": "us-west"
114114
}
115115
}'
@@ -147,7 +147,7 @@ cloud:
147147
148148
repositories:
149149
s3:
150-
bucket: "bucket_name"
150+
bucket: "bucket-name"
151151
region: "us-west-2"
152152
private-bucket:
153153
bucket: <bucket not accessible by default key>

0 commit comments

Comments
 (0)