terragrunt icon indicating copy to clipboard operation
terragrunt copied to clipboard

Terragrunt is a thin wrapper for Terraform that provides extra tools for working with multiple Terraform modules.

Results 355 terragrunt issues
Sort by recently updated
recently updated
newest added

I developed two modules: REQUIRED_CAD terragrunt.hcl: ``` locals { region_vars = read_terragrunt_config(find_in_parent_folders("region.hcl")) aws_region = local.region_vars.locals.aws_region } dependency "sns" { config_path = "${get_terragrunt_dir()}/../../../config-sns" mock_outputs_allowed_terraform_commands = ["plan"] mock_outputs = { sns_role_arn =...

question

Sorry that might be a stupid question. When I abort the apply when resource is being created via ctrl+c one time(want it to be gracefully shutdown), terragrunt send twice to...

bug
p:needs triage

## Description Fixes #2016 . This PR introduces the terragrunt `groups-json` command which outputs as JSON the groups of modules (as an array of array) of the current stack. ##...

Customer is getting the following error when attempting to use Terragrunt GCS management features: ``` Create GCS bucket $BUCKET_NAME returned an error: googleapi: Error 404: The requested project was not...

Hi, After upgrade to the latest version, Terragrunt stopped to work on MacOS system. MacOS: ``` Software: System Software Overview: System Version: macOS 12.2.1 Kernel Version: Darwin 21.3.0 Boot Volume:...

bug
p:needs triage

In Terraform if I reference any module where that module may have a defined source with something like: ``` module "iam_policies_s3_read_write" { source = "../../modules/aws-iam-policies-s3-read-write" ``` ...Its fine. But in...

question

I get the following error when running "terragrunt apply" in module "bbb": ``` [terragrunt] 2020/09/08 19:46:04 /.../aaa/terragrunt.hcl is a dependency of /.../bbb/terragrunt.hcl but detected no outputs. Either the target module...

bug
p:needs triage

So I've noticed a bit of an interesting behaviour... Let's say you've got an `~/.aws/credentials` that looks like ``` [default] aws_access_key_id = xyz123 aws_secret_access_key = alphabetagamma [prof1] aws_access_key_id = xyz123...

bug
p:needs triage

## Description This should fix a bug that happens when you provide only access and secret keys and terragrunt tries to initialize the bucket, and it fails because it always...

Currently, if you want to deploy just a single resource, `terragrunt` is fairly overkill since you need to wrap the resource in a terraform module, with all the vars and...

enhancement
needs design