Skip to main content

hiera-inspired terraform wrapper

Project description

Pterradactyl

codecov Test PyPi Release License Python Versions Python Wheel

Pterradactyl is a library developed to abstract TF configuration from the TF environment setup. Pterradactyl allows to create a hierarchy of TF environments/stacks, hallows an unconstrained number of cloud accounts and stacks to share inherited configuration.

Currently, multiple TF stacks are managed through different TF environments and var files. But this becomes especially tricky to manage when the stacks are vastly different from one another, or even in the case of slightly different stacks, one could question the DRY principal looking at all the repeat vars in the var file! When stacks deviate from one another, by using just the var files, the TF code quickly becomes unreadable with all the conditionals. Using just environments based TF, there is always room of accidental apply of one stack to the other. You can use bash files to safegaurd against that but then there is always the old faithful way of doing by just completely skipping the bash file ! (#fun-stuff)

Pterradactyl takes care of all the pain points described above.

Table of content

Some of the Pterradactyl features:

  • Programatically generated Terraform code using hierarchical YAML files structure. Override only what you have to in your stack file and keep the rest in common YAML.
  • Because Pterradactyl uses hierarchy, it becomes simple to provide standard structure to common attributes like tags in a uniform manner.
  • Secrets support using sops and AWS KMS.
  • Keeps Terraform versions consistent between stacks.
  • As the Terraform file is generated through Pterradactyl, there is no room for the fun override :)

Pterradactyl uses Phiera, to manage the YAML hierarchy configuration for a terraform code base.

Integration of terraform with Phiera is achieved through Pterradactyl.

A primer on Hiera.

Installation:

From PyPi:

pip install pterradactyl

From GitHub:

pip install git+https://github.com/Nike-Inc/pterradactyl#egg=pterradactyl

From source

You can always install it from wheel, by running the following commands:

Build package and wheel.

poetry install
poetry build

Install

python3 -m pip install dist/*.whl

Of course, you can always deploy the package to your corporate Artifactory.

Usage:

Pterradyctal supports all of the terraform commands.

basic cli

apply `pt apply <stack-name>`
plan `pt plan <stack-name>`
destroy `pt destroy <stack-name>`
graph `pt graph <stack-name>`
show `pt show <stack-name>`

Manipulating state

Pterradyctal supports all state commands and they follow the same argument patter as in TF, here are some examples

state list `pt state list <stack-name>`
state show `pt state show <stack-name> -state <target>`
state rm `pt state rm <stack-name> -state <statefile>`

Tests:

Run unit tests

poetry run pytest

Run unit tests with coverage report in HTML format.

poetry run pytest --cov-report=html --cov=pterradactyl --cov-fail-under=80 tests/

Note: keep line code coverage on at least 80% level.

Examples of creating new projects/prodcuts:

Basic Example here

  • Module setup
  • Attribute overriding

Advanced Example here

  • Create infrastructure for a new AWS account
  • Common tag setup
  • KMS encryption
  • Remote backend
  • Module setup
  • Attribute overriding

Pterradactyl Directory Structure:

After running pt apply pterradactyl will create below directory structure, containing downloaded given Terraform version with all required plugins, and workspace containing all metadata for your stack, e.g.:

.pterradactyl
├── terraform
│     └── 0.13.1
│         ├── terraform
│         └── terraform-provider-kubectl_v1.13.1
└── workspace
    └── vt-projectc0-na-useast1
        ├── facts.json
        └── main.tf.json
  • terraform - directory containing downloaded Terraform given version with downloaded plugins defined in pterra.yaml file.
  • workspace - directory containing metadata information for you stack. Each stack has a separate workspace.
  • facts.json - JSON file with facts generated by Pterradactyl (e.g. deploy_user, state_prefix, aws_account_alias)
  • main.tf.json - metadata information file regarding providers (e.g. aws, kubernetes, helm), moduls (e.g. vpc, kms, eks)and terraform backend information.

Comparison of other well-known Terraform wrappers:

Terragrunt:

Some of the key Terragrunt features:

  • Execute Terraform commands on multiple modules at once
  • Keep your Terraform configuration DRY
  • Inputs set as env variables.
  • Call custom actions using Before and After Hooks
  • Work with multiple AWS accounts
  • Lock File Handling
  • AWS Auth support
  • Caching folder where commands are being executed.
  • Auto-retry e.g. when installing provider failed due to connection error.

More info here

Terraspace:

Some of the key Terraspace features:

  • Build-in generators
  • Multiple environments
  • Deploy Multiple Stacks with a single command
  • Build-in secrets support for AWS Secret Manager, AWS SSM Parameter Store, Azure Key
  • Configurable CLI Hooks and CLI Args.
  • Allows you to create test harness.
  • Terraform Cloud and Terraform Enterprise support.

More info here

Comparison between Pterradactyl vs Terragrunt vs Terraspace

Feature Pterradactyl Terragrunt Terraspace Comment
Organized Structure
Multiple environments
Execute Terraform commands on multiple modules at once
Secrets support
CLI Hooks More details
Automated Backend Creation
Built-in Test Framework More details
Native Terraform HCL More details

Summary

It's hard to compare Pterradactyl, Terragrunt and Terraspace on the same level.
Overall all those tools have some major differences. However above gives you a gist of what you can expect in each tool.
If you are thinking what is more proper for you, simply deep into the details of each tool. Terragrut and Pterradactyl are rather thin wrappers for Terraform, whereas Terraspace is rather a huge framework.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pterradactyl-1.2.7.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

pterradactyl-1.2.7-py3-none-any.whl (27.4 kB view details)

Uploaded Python 3

File details

Details for the file pterradactyl-1.2.7.tar.gz.

File metadata

  • Download URL: pterradactyl-1.2.7.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.8.12 Linux/5.11.0-1022-azure

File hashes

Hashes for pterradactyl-1.2.7.tar.gz
Algorithm Hash digest
SHA256 baf896ead178d7793805476ee9a1f327affa3a3963b9903fe15c4b58f79f2f3c
MD5 8326aa8b8506023a3b09dde0fe5649bf
BLAKE2b-256 cb6dd071b91faa0070e20b3a7c88cd5722675695a77a14a65ea0ac2c3b446eb0

See more details on using hashes here.

File details

Details for the file pterradactyl-1.2.7-py3-none-any.whl.

File metadata

  • Download URL: pterradactyl-1.2.7-py3-none-any.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.8.12 Linux/5.11.0-1022-azure

File hashes

Hashes for pterradactyl-1.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 699b0687ad6379826674be9ac46d762da8c33839b810f5b94a0798c2eee111e8
MD5 65ea517b4276c842a2a82c39a3d1d6fe
BLAKE2b-256 d290a97c7b7dabea02f40a1eb9950c744467da3d0bd3715cf8461689ae52f3b0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page