terraform-nomad/environments/au-syd1/terragrunt.hcl
Ben Vincent 33bd638c59
All checks were successful
Build / build (pull_request) Successful in 1m9s
feat: add app-sudaporn-research-normalised
- application for Sudaporn's research
2025-03-09 19:10:02 +11:00

29 lines
566 B
HCL

include "root" {
path = find_in_parent_folders("root.hcl")
}
inputs = {
job_files = [
"testapp1",
"testapp2",
"app-sudaporn-research-normalised",
]
policy_files = []
}
generate "shared_modules" {
if_exists = "overwrite"
path = "modules.tf"
# Dynamically include the shared/modules.tf content
contents = file("../../shared/modules.tf")
}
generate "shared_variables" {
if_exists = "overwrite"
path = "variables.tf"
# Dynamically include the shared/variables.tf content
contents = file("../../shared/variables.tf")
}