Skip to main content

Module used to interact with Terragrunt and OpenTofu/Terraform state data.

Project description

python-terragrunt

Small Python helpers to work with Terragrunt and OpenTofu/Terraform state.

  • obtain OpenTofu/Terraform state using Terragrunt configuration found in your repo structure
  • execute Terragrunt commands (buffered or live-streamed output)
  • search for resource attributes within the retrieved state using ObjectPath queries

Prerequisites

  • Python ≥ 3.10
  • Terragrunt & Terraform/OpenTofu should be available on PATH if you plan to run terragrunt commands
  • State discovery via terragrunt render requires Terragrunt ≥ 0.77.18 (falls back to file search otherwise)
  • AWS credentials for boto3 to read remote state from S3 (env vars, instance profile or configured profile)

Installation

pip install tha-terragrunt

Quick start

Read state and query it

Use terragrunt.State to locate and load remote state (S3) based on your Terragrunt configuration.
By default the state is exposed as an ObjectPath tree, so you can run expressive queries.

from terragrunt import State

# Directory inside your repo (e.g., a unit/service folder with a terragrunt.hcl,
# or a child folder when you have a top-level root.hcl).
state = State(
    path="/path/to/repo/services/api",  # defaults to current working directory
    path_limit="/path/to/repo",         # stop searching upwards here (default: '/')
    key_prefix="envs/prod",             # optional S3 key prefix
    key_filename="terraform.tfstate",   # default: 'terraform.tfstate'
    state_as_optree=True                # default: True (use ObjectPath tree)
)

if state.is_empty():
    raise SystemExit("No state found or it could not be loaded.")

# Get resource IDs for a given type (returns a tuple)
instance_ids = state.get_resources("aws_instance")
print("EC2 instances:", instance_ids)

# Query outputs (tuple of values)
outputs = state.query("$..outputs.*.value")
print("Outputs:", outputs)

A few more useful queries:

  • all resource types present: state.query("$..resources.*.type")
  • ARNs of IAM roles: state.query("$..resources[@.type is 'aws_iam_role']..instances.attributes.arn")
  • S3 bucket names: state.get_resources("aws_s3_bucket", id_name="id")

To get raw JSON instead of an ObjectPath tree:

raw_state = State(path=".", state_as_optree=False).data

Run Terragrunt commands

Use terragrunt.Process to run Terragrunt with buffered or live output.

Buffered execution (capture stdout/stderr):

import logging
from terragrunt import Process

logging.basicConfig(level=logging.INFO)

p = Process(
    cwd="/path/to/repo/services/api",
    cmd="plan",                # terragrunt subcommand
    opts="-no-color",          # terragrunt options
    tfopts="-input=false"      # forwarded to Terraform
)
rc = p.exec(live=False)        # buffered
print("return code:", rc)
print(p.output.stdout)         # captured output

Live execution (stream to logger or stdio):

from terragrunt import Process

# Example: run-all apply with live streaming
p = Process(
    cwd="/path/to/repo/envs/prod",
    cmd="run-all apply",       # terragrunt command
    opts="-no-color",          # terragrunt options
    tfcmd="apply",             # underlying Terraform command (for run-all and similar)
    tfopts="-auto-approve"     # forwarded to Terraform
)
p.exec(live=True)              # streams to logging.INFO/ERROR by default

# If you prefer direct stdio streaming:
p.exec(live=True, std=True)    # writes to stdout/stderr

Notes:

  • The library auto-handles the -- separator for newer Terragrunt versions when tfcmd is provided.
  • For simple commands like terragrunt apply, you can omit tfcmd and pass terraform options in tfopts.

How state discovery works

State tries two strategies:

  1. render mode (preferred, Terragrunt ≥ 0.77.18)
    • temporarily generates a minimal terragrunt.hcl that includes your root config (e.g., root.hcl)
    • runs terragrunt render, parses the rendered HCL, and extracts the S3 remote state bucket and key
  2. search mode (fallback)
    • searches upwards (until path_limit) for one of: your config (default root.hcl), terragrunt.hcl, or terraform.tfvars
    • reads the remote_state block and calculates the S3 key as <key_prefix>/<relative_path>/<key_filename>

If the object exists in S3, it is downloaded and parsed as JSON.

Minimal API overview

  • terragrunt.State(path='.', path_limit='/', config='root.hcl', key_prefix=None, key_filename='terraform.tfstate', state_as_optree=True)
    • .data: ObjectPath tree by default, or raw dict if state_as_optree=False
    • .query(q): run an ObjectPath query, returns a tuple
    • .get_resources(type_name, id_name='id'): return tuple of resource IDs
    • .is_empty(): True if no state was loaded
  • terragrunt.Process(cwd=None, cmd, opts='', tfcmd=None, tfopts='')
    • .get_version(): Terragrunt version tuple
    • .exec(live=False, std=False): run the command; when live=True streams output
    • .output: completed process output (subprocess.CompletedProcess) when live=False

Logging

This package uses Python’s logging module. For example:

import logging
logging.basicConfig(level=logging.INFO)

License

See 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

tha_terragrunt-0.2.5.tar.gz (13.6 kB view details)

Uploaded Source

Built Distribution

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

tha_terragrunt-0.2.5-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file tha_terragrunt-0.2.5.tar.gz.

File metadata

  • Download URL: tha_terragrunt-0.2.5.tar.gz
  • Upload date:
  • Size: 13.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for tha_terragrunt-0.2.5.tar.gz
Algorithm Hash digest
SHA256 dce51ef076b22bc9c5a6b56351cc55b806ed2b6371a41a025cbb331779feea23
MD5 89a96f4eefb2b8813d73bc39071f9ebc
BLAKE2b-256 fe7e109434b0d114a766ed9e0fb7208084031faa96587587b37d5ac766f58bc5

See more details on using hashes here.

File details

Details for the file tha_terragrunt-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: tha_terragrunt-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for tha_terragrunt-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8e425b6b3c8969f964a3d1a8e558238190b5509129e61aed48061cb1c53c6ca9
MD5 37c521b30e68d2c321efc149a049844a
BLAKE2b-256 550653e6debf9a6c5a4395df3c740b29f8fc2d41c1941f3f3f10b9303116f050

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