THipster is a tool dedicated to simplifying the difficulty associated with writing Terraform files. It allows users to write infrastructure as code in a simplified format, using either YAML (with JINJA) or the dedicated Thipster DSL.
Project description
THipster
THipster is a tool dedicated to simplifying the difficulty associated with writing Terraform files. It allows users to write infrastructure as code in a simplified format, using either YAML (with JINJA) or the dedicated Thipster DSL.
Written entirely in Python, it leverages the Python CDK for Terraform to create Terraform files and apply them to the chosen provider.
Technology Stack
Written in Python 3.11, thipster is designed as a python package, to be used either as a standalone tool, or as a module inside a running process like a CI/CD pipeline.
Project Status
THipster is currently in an active development state. If you want to know more, please check the CHANGELOG for more details.
Dependencies
In order to user THipster, you will need to have the following installed:
- Python (3.11+)
- pipenv v2021.5+
- Terraform CLI (1.2+)
- Node.js and npm v16+.
Installation
To use THipster, you can simply install the package with pip:
pip install thipster
If you want to install the google dependencies aswell use
pip install thipster[google]
The list of available versions can be found on PyPI.
Usage
You can use THipster in two ways:
- By leveraging the THipster CLI
- By directly using the THipster Python package in your own code
Main feature:
- Generate Terraform files from a YAML+JINJA or THIPS file:
from thipster import Engine as ThipsterEngine
from thipster.auth import Google
from thipster.parser import ParserFactory
from thipster.repository import GithubRepo
from thipster.terraform import Terraform
# create new THipster engine
engine = ThipsterEngine(ParserFactory(), GithubRepo('THipster/models'), Google, Terraform())
# generate Terraform files and plan from a YAML+JINJA file
terraform_plan = engine.run('path/to/file/or/directory')
print(terraform_plan)
How to test the software
To run the tests, you can use the following command:
pip install -e .[test]
pytest tests
Known issues
All known issues, bugs, and feature requests are tracked in the Issue tracker.
Getting help
If you have questions, concerns, bug reports, etc, please file an issue in this repository's Issue tracker.
Getting involved
To install the project for development, you can use the following command:
pip install -r requirements.txt && pip install -e .[dev,test,doc,google]
pre-commit install && pre-commit run --all-files
For more information on how to help out, please check the CONTRIBUTING file.
Open source licensing info
Credits and references
- Projects that inspired you
- Related projects
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file thipster-0.23.15.tar.gz
.
File metadata
- Download URL: thipster-0.23.15.tar.gz
- Upload date:
- Size: 51.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5af053fa98ae7d97c570b7695e396b4628729172350104ad194832ba4b172c51 |
|
MD5 | 1feafe08e56027a15b9a118730e317b4 |
|
BLAKE2b-256 | 8c985d036c15b1d3d437508d3072f1b80ccad62a1814d7036b3b614b79aacbc7 |
File details
Details for the file thipster-0.23.15-py3-none-any.whl
.
File metadata
- Download URL: thipster-0.23.15-py3-none-any.whl
- Upload date:
- Size: 64.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42207dbe5e5348d60c33ced85ea2106a0d2a58446afe9772a8df4276f6213376 |
|
MD5 | edb1566a1cddabde486115becf97f207 |
|
BLAKE2b-256 | efe4f1031521cd026b26336303d761819bb65e65d72dee1eee4061700e7bff15 |