terragrunt-atlantis-config icon indicating copy to clipboard operation
terragrunt-atlantis-config copied to clipboard

Generate Atlantis config for Terragrunt projects.

Results 68 terragrunt-atlantis-config issues
Sort by recently updated
recently updated
newest added

Hello, Thanks again for implementing incremental builds. I'm integrating it into our workflow and there might be an edge case bug. For example, I have a TG module at path...

bug
good first issue
help wanted

I have the following `repoConfig.yaml` ```yaml - run: terragrunt-atlantis-config generate --output atlantis.yaml --autoplan --parallel --create-workspace workflows: terragrunt: plan: steps: - run: terragrunt plan -no-color -out=$PLANFILE - run: terragrunt show -no-color...

I have a large monorepo incorporating both `modules` and `live` section. I am running ``` $ terragrunt-atlantis-config generate --apply-requirements approved,mergeable --output atlantis.yaml --autoplan --parallel ``` on the root of the...

## What is the issue? On my atlantis pod, in the directory `/atlantis-data/repos/devops/terraform/723/default` I'm running: ``` terragrunt-atlantis-config generate --output test.yaml --filter './live/' --parallel --create-workspace ``` And receiving ``` Error: Failed...

question

Thanks for the great tool! :) I run into an issue when, given two Terragrunt files depending on each other and a common include: ``` test ├── bar │   └──...

enhancement
help wanted

Currently `terragrunt-atlantis-config` is actually invoking the terragrunt function `sops_decrypt_file`. When we have thousands of small secret files with `sops_decrypt_file`, it would be great that the `terragrunt-atlantis-config` would just skip the...

help wanted

Running terragrunt-atlantis-config on a file that has a `before_hook` or an `after_hook` that contains a reference to a terragrunt dependency fails with error message: `Unknown variable; There is no variable...

question

# Pull Request Adding in what I'm hoping is an equivalent example ## Related Github Issues - https://github.com/transcend-io/terragrunt-atlantis-config/issues/197 ## Description TODO ## Security Implications - _[none]_ ## System Availability -...

If you would want to remove a duplication where you have in each child terragrunt.hcl: ```hc terraform { source = "..." } ``` you can just move the block into...

question

Hey David, question for you. We have a module/resource with the following definition. ``` resource "vault_policy" "policies" { for_each = toset(var.policies) name = each.key policy = templatefile("files/${each.key}.hcl.tmpl", { environment =...