https://github.com/paujim/secret-replicator
A simple solution to replicate secrets (secret manager) between AWS regions
https://github.com/paujim/secret-replicator
aws cdk cdk-examples lambda secretmanager
Last synced: 2 months ago
JSON representation
A simple solution to replicate secrets (secret manager) between AWS regions
- Host: GitHub
- URL: https://github.com/paujim/secret-replicator
- Owner: paujim
- License: mit
- Created: 2020-05-16T22:49:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-16T23:14:27.000Z (about 5 years ago)
- Last Synced: 2025-01-29T18:46:43.968Z (4 months ago)
- Topics: aws, cdk, cdk-examples, lambda, secretmanager
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Welcome to CDK Secret Replicator!
This project replicate secrets a set of regions.
To manually create a virtualenv on MacOS and Linux:
```
$ python -m venv .env
```After the init process completes and the virtualenv is created, you can use the following
step to activate your virtualenv.```
$ source .env/bin/activate
```If you are a Windows platform, you would activate the virtualenv like this:
```
% .env\Scripts\activate.bat
```Once the virtualenv is activated, you can install the required dependencies.
```
$ pip install -r requirements.txt
```At this point you can now synthesize the CloudFormation template for this code.
```
$ cdk synth
```