.gitignore 1.2 KB

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