fix
This commit is contained in:
parent
0af3c8ba56
commit
e286c6f64d
7 changed files with 6 additions and 9 deletions
|
|
@ -1,5 +1,4 @@
|
|||
locals {
|
||||
|
||||
component = basename(get_terragrunt_dir())
|
||||
|
||||
}
|
||||
inputs = merge(values)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
locals {
|
||||
deployment = basename(get_terragrunt_dir())
|
||||
}
|
||||
inputs = merge(values)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
locals {
|
||||
env = basename(get_terragrunt_dir())
|
||||
}
|
||||
inputs = merge(values)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
locals {
|
||||
product = basename(get_terragrunt_dir())
|
||||
}
|
||||
|
||||
inputs = merge(values)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
locals {
|
||||
subcomponent = basename(get_terragrunt_dir())
|
||||
}
|
||||
inputs = merge(values)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
locals {
|
||||
|
||||
# Nom de l'équipe
|
||||
team = basename(get_terragrunt_dir())
|
||||
|
||||
|
|
@ -10,5 +9,5 @@ locals {
|
|||
# Table DynamoDB pour le verrouillage de l'état
|
||||
backend_dynamodb_table = "terraform-locks"
|
||||
backend_dynamodb_endpoint = "https://dynamodb.k8sotl.integration.in.cloe.education.gouv.fr"
|
||||
|
||||
}
|
||||
inputs = merge(values)
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
locals {
|
||||
|
||||
# Trigramme du projet
|
||||
trigram = basename(get_terragrunt_dir())
|
||||
|
||||
leaseDays = 30
|
||||
|
||||
}
|
||||
inputs = merge(values)
|
||||
|
|
|
|||
Loading…
Reference in a new issue