mirror of
https://github.com/outbackdingo/terraform-kamaji-node-pool.git
synced 2026-01-27 02:20:25 +00:00
36 lines
619 B
Plaintext
36 lines
619 B
Plaintext
# Ignore all main.auto.tfvars files in the main and subfolders
|
|
**/main.auto.tfvars
|
|
|
|
# Ignore Terraform state files
|
|
**/tfstate/
|
|
**/terraform.tfstate
|
|
**/terraform.tfstate.backup
|
|
|
|
# Ignore .terraform directories
|
|
**/.terraform/
|
|
**/.terraform.lock.hcl
|
|
|
|
# Ignore other common files
|
|
*.tfstate
|
|
*.tfstate.backup
|
|
*.tfvars
|
|
*.tfvars.json
|
|
*.log
|
|
*.bak
|
|
*.swp
|
|
*.tmp
|
|
|
|
# Ignore .envrc file
|
|
.envrc
|
|
**/.envrc
|
|
|
|
# Ignore cloud-init configuration files (contain sensitive data)
|
|
**/*.cfg
|
|
**/files/*.cfg
|
|
modules/*/files/*.cfg
|
|
|
|
# Ignore any generated cloud-init files
|
|
**/cloud-init-*.yml
|
|
**/cloud-init-*.yaml
|
|
**/userdata-*.yml
|
|
**/userdata-*.yaml |