Skip to main content

Generate documented terragrunt.hcl manifests from Terraform module variables.

Project description

terragrunt-generator

CI Codecov License: MIT Python uv

terragrunt-generator generates terragrunt.hcl configuration files — with documented inputs — from the variables exposed by a Terraform module. Point it at a module (a git repository or a local directory), tell it where to look up values, and it emits a ready-to-edit Terragrunt manifest plus an optional YAML config skeleton.

Documentation

The project site is published from main to GitHub Pages: https://goabonga.github.io/terragrunt-generator/.

Requirements

  • Python 3.13+

Installation

pip install terragrunt-generator

Or run it without installing, using uv:

uvx terragrunt-generator --help

Usage

terragrunt-generator \
  -u https://github.com/terraform-google-modules/terraform-google-project-factory.git \
  -v v14.2.1 \
  -l 'project'

This reads the module's variable blocks and prints a terragrunt.hcl whose inputs are wired to a yamldecode-based config lookup:

# terraform-google-modules v14.2.1
# https://github.com/terraform-google-modules/terraform-google-project-factory/tree/v14.2.1/

include {
    path = find_in_parent_folders()
}

locals {
    source = "github.com/terraform-google-modules/terraform-google-project-factory.git?ref=v14.2.1"
    all = merge(
        yamldecode(file(find_in_parent_folders("config.yaml"))),
    )
}

terraform {
    source = lookup(local.all, "project", false) == false ? null : lookup(local.all.project, "enabled", false) == false ? null : local.source
}

inputs = merge({
    billing_account = lookup(local.all.project, "billing_account", "")
    name = lookup(local.all.project, "name", "")
    org_id = lookup(local.all.project, "org_id", "")
    activate_api_identities = lookup(local.all.project, "activate_api_identities", [])
    activate_apis = lookup(local.all.project, "activate_apis", ["compute.googleapis.com"])
})

See the usage guide for the full option reference and the per-environment YAML workflow.

Development

git clone https://github.com/goabonga/terragrunt-generator.git
cd terragrunt-generator
uv sync

# Quality gates (mirrored in CI).
uv run ruff check src tests
uv run ruff format --check src tests
uv run mypy src
uv run pytest --cov=terragrunt_generator

# Install the pre-commit + commit-msg hooks.
uv run pre-commit install

Versioning and release

Releases are automated. Every push to main runs multicz bump --commit --tag --push — driven by Conventional Commits — then publishes to PyPI and deploys the docs.

# Preview the next release against the current branch.
multicz status

Contributing

See CONTRIBUTING.md for the workflow, the commit-message convention, and the test/lint expectations. By participating you agree to the Code of Conduct.

Security issues: please follow the disclosure process in SECURITY.md.

License

Distributed under the MIT License.

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

terragrunt_generator-1.1.0.tar.gz (14.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

terragrunt_generator-1.1.0-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file terragrunt_generator-1.1.0.tar.gz.

File metadata

  • Download URL: terragrunt_generator-1.1.0.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for terragrunt_generator-1.1.0.tar.gz
Algorithm Hash digest
SHA256 0ae32d0d82a5e91de45f4b61a71a308a53e5dd68007fde7817f97ed7d5d33101
MD5 a4318590eb9dca7a32aea0c97ae0a3a0
BLAKE2b-256 f1928916918312242313a9e30ed821939962ded332e891c2f2068b5407b73cc4

See more details on using hashes here.

File details

Details for the file terragrunt_generator-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for terragrunt_generator-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 59c2d1df484b07b339acfc3e6e729e2907ef90b86099fcd06bfd544d12a23cc7
MD5 edee86aa148b8a584ce22612c0b2c4b9
BLAKE2b-256 8f35d2b1c126ad53c517f79e7cd497848623d4cd01f840d1c030317fc684502f

See more details on using hashes here.

Supported by

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