.gitignore 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. staging.sh
  13. # Local .terraform directories
  14. **/.terraform/*
  15. .terraform
  16. .terraform.lock.hcl
  17. *kubeconfig*
  18. # .tfstate files
  19. *.tfstate
  20. *.tfstate.*
  21. # Crash log files
  22. crash.log
  23. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  24. # password, private keys, and other secrets. These should not be part of version
  25. # control as they are data points which are potentially sensitive and subject
  26. # to change depending on the environment.
  27. #
  28. *.tfvars
  29. *.tfvars.json
  30. # Ignore override files as they are usually used to override resources locally and so
  31. # are not checked in
  32. override.tf
  33. override.tf.json
  34. *_override.tf
  35. *_override.tf.json
  36. # Include override files you do wish to add to version control using negated pattern
  37. #
  38. # !example_override.tf
  39. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  40. # example: *tfplan*
  41. # Ignore CLI configuration files
  42. .terraformrc
  43. terraform.rc