Initial commit: Terraform infrastructure, pipelines, docs and scripts

This commit is contained in:
Evert Daniel Romero Garrido
2026-04-14 14:53:05 -06:00
commit 85297b12a2
31 changed files with 4015 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# ===============================================================================================================
# backend.tf - Configuración del backend de estado para proyectosacc
# Descripción:
# Configura el backend remoto de Terraform en S3 para estado compartido.
#
# Uso:
# - DEV (default): terraform init
# - PROD: terraform init -backend-config=backend.prod.hcl
#
# Autor: Área de Tecnología y Desarrollo - CCsoft
# ===============================================================================================================
terraform {
backend "s3" {
bucket = "ccsoft-terraform-state"
key = "proyectosacc/terraform.tfstate"
region = "mx-central-1"
encrypt = true
dynamodb_table = "terraform-locks"
}
}