- Update .gitignore to remove `*.tfvars` exclusion, allowing variable definition files to be tracked in version control. - Enforce a minimum Terraform version of 1.5.0 in `terraform/prod/providers.tf` to ensure compatibility with modern features.
21 lines
307 B
Plaintext
21 lines
307 B
Plaintext
# Fichiers d'état et de configuration locaux de Terraform
|
|
.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
|
|
# Fichiers sensibles d'Ansible
|
|
*.vault
|
|
*vault.yml
|
|
|
|
# Static hosts
|
|
00_static_hosts.yml
|
|
dns.home.arnodo.fr.yml
|
|
static_records.yml
|
|
01_lab_hosts.yml
|
|
|
|
# Fichier environment python et Ansible
|
|
.ansible
|
|
.env
|
|
.venv
|
|
.envrc
|