Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felipelaptrin/cdktf-lambda
Quick demo of CDKTF
https://github.com/felipelaptrin/cdktf-lambda
cdktf python
Last synced: 12 days ago
JSON representation
Quick demo of CDKTF
- Host: GitHub
- URL: https://github.com/felipelaptrin/cdktf-lambda
- Owner: felipelaptrin
- Created: 2023-10-09T16:32:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-09T16:40:36.000Z (about 1 year ago)
- Last Synced: 2024-10-11T17:05:01.367Z (2 months ago)
- Topics: cdktf, python
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CDKTF
This is a quick demo to test CDKTF as a tool to provision infrastructure in AWS.
## Code style
To standardize the code, the following packages are being used:
- **isort**: To organize/sort the imports of the python code
- **ruff**: To lint python code, i.e. checking for unused variables, find potential errors, check code style violations...
- **black**: Automatically format the code. It is compatible with ruff.### Local development
If you are using Visual Studio Code (or VSCodium) you can add to the `preferences.json` the following configuration:
```json
{
"[python]": {
"python.formatting.provider": "black",
"python.formatting.blackPath": "black",
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
}
}
```## Infrastructure
The deployed infrastructure consists of a dummy Lambda and a S3 bucket