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>
12 lines
173 B
HCL
12 lines
173 B
HCL
include "root" {
|
|
path = find_in_parent_folders("root.hcl")
|
|
}
|
|
|
|
terraform {
|
|
source = "../../../modules/object-storage"
|
|
}
|
|
|
|
inputs = {
|
|
bucket_name = "foxhunt-artifacts"
|
|
}
|