Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosroman committed Mar 13, 2017
1 parent fa30f76 commit f1bf348
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,30 @@ Healthchecks: [http://localhost:8080/__health](http://localhost:8080/__health)
Ping: [http://localhost:8080/ping](http://localhost:8080/ping) or [http://localhost:8080/__ping](http://localhost:8080/__ping)
Build Info: [http://localhost:8080/build-info](http://localhost:8080/build-info) or [http://localhost:8080/build-info](http://localhost:8080/__build-info)
GTG: [http://localhost:8080/build-info](http://localhost:8080/__gtg)


### Notes

#### S3 buckets

For this to work you need to make sure that your AWS credentials has the following policy file on the bucket.
```
{
"Version": "2012-10-17",
"Id": "Policy12345678990",
"Statement": [
{
"Sid": "Stmt12345678990",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::<ID>:user/<AWS_KEY_ID>"
},
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::<BUCKET_NAME>",
"arn:aws:s3:::<BUCKET_NAME>/*"
]
}
]
}
```

0 comments on commit f1bf348

Please sign in to comment.