52 lines
579 B
Plaintext
52 lines
579 B
Plaintext
# OpenTofu / Terraform
|
|
**/.terraform/
|
|
**/.terraform.lock.hcl
|
|
|
|
# State
|
|
**/*.tfstate
|
|
**/*.tfstate.*
|
|
**/crash.log
|
|
**/crash.*.log
|
|
|
|
# Variable files with secrets
|
|
**/*.tfvars
|
|
**/*.tfvars.json
|
|
!**/*.tfvars.example
|
|
|
|
# Optional local override files
|
|
**/override.tf
|
|
**/override.tf.json
|
|
**/*_override.tf
|
|
**/*_override.tf.json
|
|
|
|
# CLI config / credentials
|
|
.terraformrc
|
|
terraform.rc
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Secrets / keys
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
id_rsa
|
|
id_rsa.pub
|
|
id_ed25519
|
|
id_ed25519.pub
|
|
|
|
# Editors / OS
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
notes.md
|