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.2.tar.gz (15.1 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.2-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: terragrunt_generator-1.1.2.tar.gz
  • Upload date:
  • Size: 15.1 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.2.tar.gz
Algorithm Hash digest
SHA256 a3bd7303975816b55b39bb581607fdeb8a37f6d25454c527d67082f0c17775b1
MD5 072587e90bd6f37ec6f51d178804440c
BLAKE2b-256 089bdf76a1636d130846c7797dd7a0b0744ca9d8f2842a79187142d2d41b64b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for terragrunt_generator-1.1.2.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.2-py3-none-any.whl.

File metadata

File hashes

Hashes for terragrunt_generator-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f54468908b571051725e876c3d2b1aa95ef7df2235ceef9c0cae6392e6c52528
MD5 7e949d63c0aab0f63a6a06f2c00a48a6
BLAKE2b-256 b6269ed7a50cebd13e8e0e82c05728cb24896fe6c3f44f44c02d02c13d01ec2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for terragrunt_generator-1.1.2-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