[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
This commit is contained in:
parent
7f271fd37a
commit
68a8e78b59
|
@ -92,7 +92,7 @@ Here is how it can be configured:
|
||||||
gateway:
|
gateway:
|
||||||
type: s3
|
type: s3
|
||||||
s3:
|
s3:
|
||||||
bucket: bucket_name
|
bucket: bucket-name
|
||||||
|
|
||||||
The following are a list of settings (prefixed with `gateway.s3`) that can further control the s3 gateway:
|
The following are a list of settings (prefixed with `gateway.s3`) that can further control the s3 gateway:
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ The S3 repository is using S3 to store snapshots. The S3 repository can be creat
|
||||||
$ curl -XPUT 'http://localhost:9200/_snapshot/my_s3_repository' -d '{
|
$ curl -XPUT 'http://localhost:9200/_snapshot/my_s3_repository' -d '{
|
||||||
"type": "s3",
|
"type": "s3",
|
||||||
"settings": {
|
"settings": {
|
||||||
"bucket": "my_backet_name",
|
"bucket": "my-bucket-name",
|
||||||
"region": "us-west"
|
"region": "us-west"
|
||||||
}
|
}
|
||||||
}'
|
}'
|
||||||
|
@ -147,7 +147,7 @@ cloud:
|
||||||
|
|
||||||
repositories:
|
repositories:
|
||||||
s3:
|
s3:
|
||||||
bucket: "bucket_name"
|
bucket: "bucket-name"
|
||||||
region: "us-west-2"
|
region: "us-west-2"
|
||||||
private-bucket:
|
private-bucket:
|
||||||
bucket: <bucket not accessible by default key>
|
bucket: <bucket not accessible by default key>
|
||||||
|
|
Loading…
Reference in New Issue