Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mtulio/cdk-samples
AWS Cloud Development Kit Samples in Python
https://github.com/mtulio/cdk-samples
Last synced: 8 days ago
JSON representation
AWS Cloud Development Kit Samples in Python
- Host: GitHub
- URL: https://github.com/mtulio/cdk-samples
- Owner: mtulio
- License: mit
- Created: 2020-09-12T02:42:38.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-11T03:24:09.000Z (over 3 years ago)
- Last Synced: 2024-05-10T00:02:57.359Z (6 months ago)
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cdk-samples
[Cloud Development Kit](https://docs.aws.amazon.com/cdk/latest/guide/work-with-cdk-python.html) Samples in Python
## Prerequisites
- Install CDK CLI
```
npm install -g aws-cdk
```## Manage Projects
### Create a new Project (new-sample)
```bash
mkdir new-sample
cd new-sample && cdk init app --language python
./env/bin/pip install -r requirements.txt
```### Generate CloudFormation Template
```bash
cdk synth
```### Deploy Project
```bash
cdk deploy
```