[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:
Igor Motov 2014-04-15 19:30:30 -04:00
parent 7f271fd37a
commit 68a8e78b59
1 changed files with 3 additions and 3 deletions

View File

@ -92,7 +92,7 @@ Here is how it can be configured:
gateway:
type: 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:
@ -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 '{
"type": "s3",
"settings": {
"bucket": "my_backet_name",
"bucket": "my-bucket-name",
"region": "us-west"
}
}'
@ -147,7 +147,7 @@ cloud:
repositories:
s3:
bucket: "bucket_name"
bucket: "bucket-name"
region: "us-west-2"
private-bucket:
bucket: <bucket not accessible by default key>