diff options
author | Costa Paraskevopoulos <costa.paras1@gmail.com> | 2024-05-13 21:26:49 +1000 |
---|---|---|
committer | Costa Paraskevopoulos <costa.paras1@gmail.com> | 2024-05-13 21:38:08 +1000 |
commit | 1ab38f03c90e3670c8255ea573b61c0ba7afc907 (patch) | |
tree | ad68390c5348727df0e51fc04a90296d3525f41a | |
parent | 7b22f8ab6c85b4ef1469d72a8ba96462e2a44853 (diff) | |
download | gitignore-1ab38f03c90e3670c8255ea573b61c0ba7afc907.tar.gz gitignore-1ab38f03c90e3670c8255ea573b61c0ba7afc907.zip |
Ignore terragrunt cache
This excludes the common/default location from source control
Docs: https://terragrunt.gruntwork.io/docs/features/caching/
-rw-r--r-- | Terraform.gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Terraform.gitignore b/Terraform.gitignore index 9b8a46e6..a4937147 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -32,3 +32,7 @@ override.tf.json # Ignore CLI configuration files .terraformrc terraform.rc + +# Ignore the default terragrunt cache directory +# https://terragrunt.gruntwork.io/docs/features/caching/ +.terragrunt-cache |