sops-secretsmanager-cdk
Advanced tools
Comparing version 1.6.5 to 1.7.0
{ | ||
"name": "sops-secretsmanager-cdk", | ||
"version": "1.6.5", | ||
"version": "1.7.0", | ||
"description": "Safely load secrets from sops into secretsmanager using the CDK", | ||
@@ -27,3 +27,6 @@ "license": "MIT", | ||
"lint": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --fix", | ||
"lint-check": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --max-warnings 0" | ||
"lint-check": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --max-warnings 0", | ||
"lint-all": "npm run lint && (cd provider && npm run lint) && (cd example/sops-example && npm run lint)", | ||
"lint-check-all": "npm run lint-check && (cd provider && npm run lint-check) && (cd example/sops-example && npm run lint-check)", | ||
"deploy-example": "npm run compile && (cd example && ./run_example.sh full-test)" | ||
}, | ||
@@ -30,0 +33,0 @@ "dependencies": { |
@@ -79,2 +79,16 @@ # sops-secretsmanager-cdk | ||
## Integration testing | ||
Run the following to deploy a test stack named | ||
`SopsExampleStack`. Note that if a stack with this name exists, it | ||
will be deleted: | ||
``` | ||
$ npm run deploy-example | ||
``` | ||
This compiles and uses the code from your working directory, finds an | ||
existing customer-managed KMS key, deploys a stack that uses an sample | ||
secret, and verifies that the created secret contains the expected | ||
data. | ||
## Releasing a new version | ||
@@ -81,0 +95,0 @@ |
29388765
100