fix
This commit is contained in:
parent
83544894ac
commit
6e7c534e85
5 changed files with 22 additions and 0 deletions
5
models/component/component.hcl
Normal file
5
models/component/component.hcl
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
locals {
|
||||||
|
|
||||||
|
component = basename(get_terragrunt_dir())
|
||||||
|
|
||||||
|
}
|
||||||
3
models/deployment/deployment.hcl
Normal file
3
models/deployment/deployment.hcl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
locals {
|
||||||
|
deployment = basename(get_terragrunt_dir())
|
||||||
|
}
|
||||||
8
models/deployment/terragrunt.hcl
Normal file
8
models/deployment/terragrunt.hcl
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# Include all settings from the root terragrunt.hcl file
|
||||||
|
include "root" {
|
||||||
|
path = find_in_parent_folders("root.hcl")
|
||||||
|
}
|
||||||
|
|
||||||
|
terraform {
|
||||||
|
source = "git::https://gitlab.forge.education.gouv.fr/dp2n-integ/commun/terraform/modules/cloe.git//?ref=2.0.11"
|
||||||
|
}
|
||||||
3
models/environment/environment.hcl
Normal file
3
models/environment/environment.hcl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
locals {
|
||||||
|
env = basename(get_terragrunt_dir())
|
||||||
|
}
|
||||||
3
models/subcomponent/subcomponent.hcl
Normal file
3
models/subcomponent/subcomponent.hcl
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
locals {
|
||||||
|
subcomponent = basename(get_terragrunt_dir())
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue