Skip to content

Commit

Permalink
Merge pull request #1056 from robfrawley/bugfix-update-amazon-s3-serv…
Browse files Browse the repository at this point in the history
…ice-documentation

[Documentation] Update Amazon S3 service RST docs to include version argument
  • Loading branch information
robfrawley committed May 12, 2018
2 parents c200f8e + 16e7b4e commit 6b5f04c
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Resources/doc/cache-resolver/aws_s3.rst
Expand Up @@ -34,10 +34,11 @@ To begin, you must assign your AWS key, secret, bucket, and region to their resp
# app/config/config.yml or app/config/parameters.yml
parameters:
amazon.s3.key: "your-aws-key"
amazon.s3.secret: "your-aws-secret"
amazon.s3.bucket: "your-bucket.example.com"
amazon.s3.region: "your-bucket-region"
amazon.s3.key: "your-aws-key"
amazon.s3.secret: "your-aws-secret"
amazon.s3.bucket: "your-bucket.example.com"
amazon.s3.region: "your-bucket-region"
amazon.s3.version: "2006-03-01"
Prerequisites
Expand All @@ -59,7 +60,7 @@ Create Resolver from a Factory
key: "%amazon.s3.key%"
secret: "%amazon.s3.secret%"
region: "%amazon.s3.region%"
version: "2006-03-01"
version: "%amazon.s3.version%"
bucket: "%amazon.s3.bucket%"
get_options:
Scheme: https
Expand Down Expand Up @@ -101,6 +102,7 @@ You have to set up the services required:
-
credentials: { key: "%amazon.s3.key%", secret: "%amazon.s3.secret%" }
region: "%amazon.s3.region%"
version: "%amazon.s3.version%"
acme.imagine.cache.resolver.amazon_s3:
class: Liip\ImagineBundle\Imagine\Cache\Resolver\AwsS3Resolver
Expand Down Expand Up @@ -136,6 +138,8 @@ You have to set up the services required:
-
credentials: { key: %amazon.s3.key%, secret: %amazon.s3.secret% }
region: %amazon.s3.region%
version: "%amazon.s3.version%"
Usage
-----
Expand Down

0 comments on commit 6b5f04c

Please sign in to comment.