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
terragruntcommands - State discovery via
terragrunt renderrequires Terragrunt ≥ 0.77.18 (falls back to file search otherwise) - AWS credentials for
boto3to 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 whentfcmdis provided. - For simple commands like
terragrunt apply, you can omittfcmdand pass terraform options intfopts.
How state discovery works
State tries two strategies:
- render mode (preferred, Terragrunt ≥ 0.77.18)
- temporarily generates a minimal
terragrunt.hclthat includes your root config (e.g.,root.hcl) - runs
terragrunt render, parses the rendered HCL, and extracts the S3 remote statebucketandkey
- temporarily generates a minimal
- search mode (fallback)
- searches upwards (until
path_limit) for one of: yourconfig(defaultroot.hcl),terragrunt.hcl, orterraform.tfvars - reads the
remote_stateblock and calculates the S3 key as<key_prefix>/<relative_path>/<key_filename>
- searches upwards (until
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 ifstate_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; whenlive=Truestreams output.output: completed process output (subprocess.CompletedProcess) whenlive=False
Logging
This package uses Python’s logging module. For example:
import logging
logging.basicConfig(level=logging.INFO)
License
See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dce51ef076b22bc9c5a6b56351cc55b806ed2b6371a41a025cbb331779feea23
|
|
| MD5 |
89a96f4eefb2b8813d73bc39071f9ebc
|
|
| BLAKE2b-256 |
fe7e109434b0d114a766ed9e0fb7208084031faa96587587b37d5ac766f58bc5
|
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e425b6b3c8969f964a3d1a8e558238190b5509129e61aed48061cb1c53c6ca9
|
|
| MD5 |
37c521b30e68d2c321efc149a049844a
|
|
| BLAKE2b-256 |
550653e6debf9a6c5a4395df3c740b29f8fc2d41c1941f3f3f10b9303116f050
|