Some checks failed
Build / build (pull_request) Failing after 27s
- manage nomad jobs - create makefile - create gitignore - manage terragrunt environments - add build jobs
28 lines
526 B
HCL
28 lines
526 B
HCL
include "root" {
|
|
path = find_in_parent_folders("root.hcl")
|
|
}
|
|
|
|
inputs = {
|
|
job_files = [
|
|
"testapp1",
|
|
"testapp2",
|
|
]
|
|
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")
|
|
}
|