A Python client for the Terraform Cloud API
Project description
terrasnek
A Python Client for the Terraform Cloud API.
Overview
The goal of this project is to support all endpoints available in the
Terraform Cloud API
and Terraform Enterprise API.
In general, terrasnek
is developed against the Terraform Cloud APIs first (as
most features are released there first and may not be available in Terraform
Enterprise), but all endpoints are loved equally and this project intends to
support both types of users.
Note: This project is tested against Terraform Enterprise often, but the code coverage
represented in this repo will always represent coverage against Terraform Cloud
Business Tier (skipping all admin
modules), so the coverage percentage
is higher than represented in the badge.
Terraform Enterprise Release Notes Terraform Cloud API Changelog
Note: Terraform Enterprise is the self-hosted distribution of Terraform Cloud. It offers enterprises a private instance of the Terraform Cloud application, with no resource limits and with additional enterprise-grade architectural features like audit logging and SAML single sign-on.
Using terrasnek
For more details on using each endpoint, check out the
docs or the test
directory.
from terrasnek.api import TFC
import os
TFC_TOKEN = os.getenv("TFC_TOKEN", None)
TFC_URL = os.getenv("TFC_URL", None) # ex: https://app.terraform.io
# set to True if you want to use HTTP or insecure HTTPS
SSL_VERIFY = os.getenv("SSL_VERIFY", False)
if __name__ == "__main__":
api = TFC(TFC_TOKEN, url=TFC_URL, verify=SSL_VERIFY)
api.set_org("YOUR_ORGANIZATION")
terrasnek
to Terraform Cloud API Spec Completeness
To compare terrasnek
implemented endpoints to those listed on the Terraform
Cloud API docs, view the auto-generated
TERRASNEK_API_COVERAGE_COMPLETENESS.md
file. The goal is to always have over 95% of all published endpoints implemented
at any time.
terrasnek
Common Use Case Examples
See the terrasnek
docs. You
can download the docs as a PDF directly from readthedocs.io
.
Contributing to terrasnek
If you'd like to contribute to terrasnek
, review CONTRIBUTING.md
.
Relevant Blogs
- Migrating a Lot of State with Python and the Terraform Cloud API
- The Power of the Terraform API: How to Easily Migrate Any Data Between Enterprise and Cloud
Note: This repo is not officially maintained by HashiCorp.
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 terrasnek-0.1.14.tar.gz
.
File metadata
- Download URL: terrasnek-0.1.14.tar.gz
- Upload date:
- Size: 75.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.8.2 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 255b97ffa2ca747d0b27cbac9c8ffe97202e94ef1245a87c4c29fd6ff3e617b7 |
|
MD5 | 0a5af2c16d74a7ea0f91fc7811e66f21 |
|
BLAKE2b-256 | 8de69450560c4bd1df7e4dfb8fc60e2aa8608ce4a2fd8347b91d2d10d78c29dc |
File details
Details for the file terrasnek-0.1.14-py3-none-any.whl
.
File metadata
- Download URL: terrasnek-0.1.14-py3-none-any.whl
- Upload date:
- Size: 147.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.8.2 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6f4cc4088b3fc0b3627089f600c347c785c5a9c7210bfc86e17d0e718b176d0 |
|
MD5 | 6f72731664560b404dc54bd08a1c5484 |
|
BLAKE2b-256 | 5e78b5643882445fd72b21cf5e96eb00ec4c840c13c2b642d10aad06d542fa29 |