.gitignore 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .DS_Store
  2. .env
  3. docker/.env
  4. app
  5. *.db
  6. test.yaml
  7. dist
  8. gon.hcl
  9. internal/local_templates
  10. gon*.hcl
  11. *prod.Dockerfile
  12. # Local .terraform directories
  13. **/.terraform/*
  14. .terraform
  15. .terraform.lock.hcl
  16. *kubeconfig*
  17. # .tfstate files
  18. *.tfstate
  19. *.tfstate.*
  20. # Crash log files
  21. crash.log
  22. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  23. # password, private keys, and other secrets. These should not be part of version
  24. # control as they are data points which are potentially sensitive and subject
  25. # to change depending on the environment.
  26. #
  27. *.tfvars
  28. *.tfvars.json
  29. # Ignore override files as they are usually used to override resources locally and so
  30. # are not checked in
  31. override.tf
  32. override.tf.json
  33. *_override.tf
  34. *_override.tf.json
  35. # Include override files you do wish to add to version control using negated pattern
  36. #
  37. # !example_override.tf
  38. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  39. # example: *tfplan*
  40. # Ignore CLI configuration files
  41. .terraformrc
  42. terraform.rc