https://github.com/johnfraney/cdktf-remote-template-python-poetry
A terraform-cdk CLI template for Python projects using Poetry for dependency management
https://github.com/johnfraney/cdktf-remote-template-python-poetry
Last synced: 11 months ago
JSON representation
A terraform-cdk CLI template for Python projects using Poetry for dependency management
- Host: GitHub
- URL: https://github.com/johnfraney/cdktf-remote-template-python-poetry
- Owner: johnfraney
- License: mpl-2.0
- Created: 2021-08-19T01:56:48.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T03:08:58.000Z (about 2 years ago)
- Last Synced: 2025-04-02T20:44:48.160Z (about 1 year ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 20
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cdktf-remote-template-python-poetry
A [terraform-cdk](https://github.com/hashicorp/terraform-cdk) CLI template for Python projects using [Poetry](https://python-poetry.org) for dependency management.
## Usage
Before starting a project with this template, make sure [Poetry](https://python-poetry.org/docs/#installation) is installed on your system.
Then, in the `--template` argument to `cdktf init`, include the URL to a `.zip` file of this project.
The `.zip` file can either be a branch:
```bash
cdktf init --template="https://github.com/johnfraney/cdktf-remote-template-python-poetry/archive/refs/heads/main.zip" --local
```
Or a tag:
```bash
cdktf init --template="https://github.com/johnfraney/cdktf-remote-template-python-poetry/archive/refs/tags/v1.0.0.zip" --local
```