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.1.tar.gz (14.7 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.1-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for terragrunt_generator-1.1.1.tar.gz
Algorithm Hash digest
SHA256 0aa7b851c1117b5d3b4f98f56466a7bcf029c3f83ae17fe0c7fd6fed039ef4fa
MD5 83fef110e4d82f4a29fd773dc9f616c0
BLAKE2b-256 7f83c42e321003cd36595c656b759dff61cebeb8247243abcf3c25f8e145d782

See more details on using hashes here.

Provenance

The following attestation bundles were made for terragrunt_generator-1.1.1.tar.gz:

Publisher: ci.yml on goabonga/terragrunt-generator

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for terragrunt_generator-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9b3137f858c0c64d46c2962529368033451de5d7533c9efc5391558bffcd6868
MD5 1d144e22d010e699bef4efc397cccd5a
BLAKE2b-256 1bae6d894d753c8214c1ea6537fc913e733b821c51ae09244a59509ba9e7709f

See more details on using hashes here.

Provenance

The following attestation bundles were made for terragrunt_generator-1.1.1-py3-none-any.whl:

Publisher: ci.yml on goabonga/terragrunt-generator

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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