3fe8cb1391
- Use DEV_S3_ARTIFACTS_BUCKET and PROD_S3_ARTIFACTS_BUCKET in 06_install instead of generic S3_ARTIFACTS_BUCKET to prevent cross-env reads - Add terraform/environments/*.tfvars to .gitignore to prevent secret leaks - Update prod backend state bucket name to proyectosacc-specific bucket - Add CI/CD credential policy documentation
60 lines
911 B
Plaintext
60 lines
911 B
Plaintext
# ===============================================================================
|
|
# 🚫 ARCHIVOS Y DIRECTORIOS IGNORADOS — Proyecto proyectosacc
|
|
# ===============================================================================
|
|
|
|
# Variables de entorno y secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Terraform
|
|
terraform/.terraform/
|
|
terraform/*.tfstate
|
|
terraform/*.tfstate.*
|
|
terraform/*.tfplan
|
|
terraform/.terraform.lock.hcl
|
|
terraform/crash.log
|
|
terraform/crash.*.log
|
|
terraform/override.tf
|
|
terraform/override.tf.json
|
|
terraform/*_override.tf
|
|
terraform/*_override.tf.json
|
|
terraform/environments/*.tfvars
|
|
!terraform/environments/*.example.tfvars
|
|
|
|
# Claves SSH y certificados
|
|
*.pem
|
|
*.key
|
|
*.pub
|
|
*.crt
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDEs y editores
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Dependencias y builds
|
|
node_modules/
|
|
build/
|
|
dist/
|
|
.gradle/
|
|
gradle/
|
|
*.jar
|
|
*.war
|
|
*.zip
|
|
|
|
# Archivos temporales
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|