2019-05-08 13:06:36 +00:00
[![CircleCI ](https://circleci.com/gh/cderche/greenlock-storage-s3.svg?style=svg )](https://circleci.com/gh/cderche/greenlock-storage-s3)
2019-05-08 13:49:02 +00:00
[![Codacy Badge ](https://api.codacy.com/project/badge/Grade/0923e01ff76e403abab4637a45149155 )](https://www.codacy.com/app/c.derche/greenlock-storage-s3?utm_source=github.com& utm_medium=referral& utm_content=cderche/greenlock-storage-s3& utm_campaign=Badge_Grade)
2019-05-08 14:06:29 +00:00
[![Known Vulnerabilities ](https://snyk.io/test/github/cderche/greenlock-storage-s3/badge.svg )](https://snyk.io/test/github/cderche/greenlock-storage-s3)
2019-05-08 13:06:36 +00:00
2019-05-08 09:38:04 +00:00
# greenlock-storage-s3
2019-05-08 09:42:14 +00:00
S3 backed storage strategy for greenlock-express.js (and greenlock.js)
2019-05-08 09:52:09 +00:00
2019-05-08 10:43:59 +00:00
## Requirements
2019-05-08 09:52:09 +00:00
2019-05-08 14:20:09 +00:00
You will need:
1. S3 Bucket (< a href = "https://aws.amazon.com/s3/" target = "_blank" > more info.</ a > )
2. AWS API credentials with read and write access to the bucket (< a href = "https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html" target = "_blank" > more info.</ a > )
2019-05-08 09:52:09 +00:00
2019-05-08 14:20:09 +00:00
You will need to pass the following information to greenlock-storage-s3
1. Your accessKeyId
2. Your secretAccessKey
3. Your regionName
4. Your bucketName
## Integration
### greenlock-express.js
```javascript
let store = require('./index').create({
accessKeyId: accessKeyId // Your accessKeyId
, secretAccessKey: secretAccessKey // Your secretAccessKey
, regionName: regionName // Your regionName
, bucketName: bucketName // Your bucketName
, configDir: 'acme/' // Recommended
, accountsDir: 'accounts/' // Recommended
, debug: true // Debug
});
var Greenlock = require("greenlock-express");
var greenlock = Greenlock.create({
// Other options
, store: store
});
// Continue your greenlock setup
```
2019-05-08 09:52:09 +00:00
2019-05-08 10:43:59 +00:00
## License
2019-05-08 09:52:09 +00:00
2019-05-08 13:06:36 +00:00
ISC