Files
foxhunt/infra/live/production/object-storage/terragrunt.hcl
jgrusewski b507b1bdea infra: rename root terragrunt.hcl → root.hcl (fix anti-pattern warning)
Terragrunt v0.77+ warns about using terragrunt.hcl as root config.
Rename to root.hcl and update all child includes to use
find_in_parent_folders("root.hcl").

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 23:29:11 +01:00

12 lines
173 B
HCL

include "root" {
path = find_in_parent_folders("root.hcl")
}
terraform {
source = "../../../modules/object-storage"
}
inputs = {
bucket_name = "foxhunt-artifacts"
}