.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .DS_Store
  2. /bin
  3. /vendor
  4. cover.out
  5. # ignore vim swp
  6. *.swp
  7. # ignore ide files (debug config etc...)
  8. /.vscode
  9. /.idea
  10. # helm chart dependencies
  11. **/charts/*.tgz
  12. **/charts/**/requirements.lock
  13. .tagmanifest
  14. deploy/charts/external-secrets/templates/crds/*.yaml
  15. site/
  16. e2e/k8s/deploy
  17. e2e/e2e.test
  18. # tf ignores
  19. # Local .terraform directories
  20. **/.terraform/*
  21. # .tfstate files
  22. *.tfstate
  23. *.tfstate.*
  24. # Crash log files
  25. crash.log
  26. crash.*.log
  27. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  28. # password, private keys, and other secrets. These should not be part of version
  29. # control as they are data points which are potentially sensitive and subject
  30. # to change depending on the environment.
  31. #
  32. *.tfvars
  33. # Ignore override files as they are usually used to override resources locally and so
  34. # are not checked in
  35. override.tf
  36. override.tf.json
  37. *_override.tf
  38. *_override.tf.json
  39. # Include override files you do wish to add to version control using negated pattern
  40. #
  41. # !example_override.tf
  42. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  43. # example: *tfplan*
  44. # Ignore CLI configuration files
  45. .terraformrc
  46. terraform.rc
  47. **/secrets/**
  48. .terraform.lock.hcl