34 lines
642 B
Plaintext
34 lines
642 B
Plaintext
# === Terraform state ===
|
|
*.tfstate.backup
|
|
|
|
# Crash logs
|
|
crash.log
|
|
crash.*.log
|
|
|
|
# === Terraform working dir ===
|
|
.terraform/
|
|
.terraform.*
|
|
|
|
# === Terraform lock files ===
|
|
# Keep the lock file if you want reproducible provider versions
|
|
# Comment out the next line if you do want to commit it
|
|
.terraform.lock.hcl
|
|
|
|
# === Local override files ===
|
|
# These are machine/developer specific, never commit them
|
|
override.tf
|
|
override.tf.json
|
|
*_override.tf
|
|
*_override.tf.json
|
|
|
|
# === Sensitive variable files ===
|
|
# (add your own if you keep secrets in *.tfvars)
|
|
*.tfvars
|
|
*.tfvars.json
|
|
*.auto.tfvars
|
|
*.auto.tfvars.json
|
|
# === Other noise ===
|
|
*.bak
|
|
*.swp
|
|
*.tmp
|