mirror of
https://github.com/immich-app/immich.git
synced 2025-12-06 01:10:00 +03:00
21 lines
406 B
TOML
21 lines
406 B
TOML
[tools]
|
|
terragrunt = "0.93.10"
|
|
opentofu = "1.10.7"
|
|
|
|
[tasks."tg:fmt"]
|
|
run = "terragrunt hclfmt"
|
|
description = "Format terragrunt files"
|
|
|
|
[tasks.tf]
|
|
run = "terragrunt run --all"
|
|
description = "Wrapper for terragrunt run-all"
|
|
dir = "{{cwd}}"
|
|
|
|
[tasks."tf:fmt"]
|
|
run = "tofu fmt -recursive tf/"
|
|
description = "Format terraform files"
|
|
|
|
[tasks."tf:init"]
|
|
run = { task = "tf init -- -reconfigure" }
|
|
dir = "{{cwd}}"
|