stack/models/team/team.hcl

14 lines
488 B
HCL
Raw Normal View History

2026-06-30 12:18:00 +02:00
locals {
# Nom de l'équipe
team = basename(get_terragrunt_dir())
# Configuration du backend S3 pour stocker l'état Terraform
backend_bucket = "buc-cloe-vra8-pycloud-dev"
backend_endpoint = "https://storagegrid-racine.in.phm.education.gouv.fr"
# 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"
}
2026-06-30 19:18:14 +02:00
inputs = merge(try(values, {}))