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

Uploaded Python 3

File details

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

File metadata

  • Download URL: tha_terragrunt-0.2.2.tar.gz
  • Upload date:
  • Size: 13.1 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.2.tar.gz
Algorithm Hash digest
SHA256 620260167ee0ffe4874360fe796b5177ef0441dee37b7608fd11605b9db7c938
MD5 468bc33fcd28564f2e5ee7024e5fc095
BLAKE2b-256 565a0712c16e28759108f9d762bf5443d8b8869ad7e500ccba489ecf5a1cf3a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tha_terragrunt-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 12.6 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a174f452f1f4892652f0dbeee2d281e2007ccc2f9718de04682f6f36d9e84bbb
MD5 b3891e08b0021c8cca570912a54bdb2c
BLAKE2b-256 2e659cffb3fd9e43c21754c7f55eede190fd952689957ce97293891a3d9bf893

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