diff --git a/README.md b/README.md index 388137f..ec971da 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ You will need a s3 bucket and the corresponding credentials. let challenge = require('greenlock-challenge-s3').create({ accessKeyId: accessKeyId // Replace with your accessKeyId , secretAccessKey: secretAccessKey // Replace with your secretAccessKey - , regionName: regionName // Replace with your regionName + , bucketRegion: bucketRegion // Replace with your bucketRegion , bucketName: bucketName // Replace with your bucketName , directory: 'acme-challenge/' // Recommended , debug: true // Debug @@ -52,11 +52,11 @@ To run the tests yourself, create a `.env` file with the following // .env file AWS_ACCESS_KEY_ID=abc // Replace with your accessKeyId AWS_SECRET_ACCESS_KEY=abc // Replace with your secretAccessKey -AWS_BUCKET_REGION=abc // Replace with your regionName +AWS_BUCKET_REGION=abc // Replace with your bucketRegion AWS_BUCKET_NAME=abc // Replace with your bucketName ``` -Run the following command: +Run the following command: ```console $ npm run clean && npm run test && npm run clean ``` diff --git a/clean.js b/clean.js index aa3f948..40d6980 100644 --- a/clean.js +++ b/clean.js @@ -4,13 +4,13 @@ require("dotenv").config(); let accessKeyId = process.env.AWS_ACCESS_KEY_ID , secretAccessKey = process.env.AWS_SECRET_ACCESS_KEY - , regionName = process.env.AWS_BUCKET_REGION + , bucketRegion = process.env.AWS_BUCKET_REGION , bucketName = process.env.AWS_BUCKET_NAME; var AWS = require("aws-sdk"); AWS.config.setPromisesDependency(Promise); AWS.config.update({ - region: regionName + region: bucketRegion , credentials: new AWS.Credentials({ accessKeyId: accessKeyId , secretAccessKey: secretAccessKey @@ -43,4 +43,4 @@ s3.listObjects({ Bucket: bucketName }).promise().then((data) => { }).catch((err) => { console.error(err.message); throw err; -}); \ No newline at end of file +}); diff --git a/package.json b/package.json index a6cc021..770dded 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "greenlock-challenge-s3", - "version": "1.1.0", + "version": "1.1.1", "description": "S3 backed challenge strategy for greenlock-express.js (and greenlock.js)", "main": "index.js", "scripts": { diff --git a/test.js b/test.js index 70edfb0..0b4024b 100644 --- a/test.js +++ b/test.js @@ -4,7 +4,7 @@ require("dotenv").config(); let accessKeyId = process.env.AWS_ACCESS_KEY_ID , secretAccessKey = process.env.AWS_SECRET_ACCESS_KEY - , regionName = process.env.AWS_BUCKET_REGION + , bucketRegion = process.env.AWS_BUCKET_REGION , bucketName = process.env.AWS_BUCKET_NAME; let tester = require("greenlock-challenge-test"); @@ -12,7 +12,7 @@ let tester = require("greenlock-challenge-test"); let challenger = require("./index").create({ accessKeyId , secretAccessKey - , regionName + , bucketRegion , bucketName , directory: "acme-challenge/" , debug: true