Skip to content

Commit

Permalink
[DOCS] Change bucket names to use "-" instead of "_" in examples
Browse files Browse the repository at this point in the history
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
  • Loading branch information
imotov committed Apr 15, 2014
1 parent 7f271fd commit 68a8e78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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"
}
}'
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 68a8e78

Please sign in to comment.