.gitignore 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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/suites/argocd/argocd.test
  20. e2e/suites/flux/flux.test
  21. e2e/suites/provider/provider.test
  22. e2e/suites/generator/generator.test
  23. # tf ignores
  24. # Local .terraform directories
  25. **/.terraform/*
  26. # .tfstate files
  27. *.tfstate
  28. *.tfstate.*
  29. # Crash log files
  30. crash.log
  31. crash.*.log
  32. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  33. # password, private keys, and other secrets. These should not be part of version
  34. # control as they are data points which are potentially sensitive and subject
  35. # to change depending on the environment.
  36. #
  37. *.tfvars
  38. # Ignore override files as they are usually used to override resources locally and so
  39. # are not checked in
  40. override.tf
  41. override.tf.json
  42. *_override.tf
  43. *_override.tf.json
  44. # Include override files you do wish to add to version control using negated pattern
  45. #
  46. # !example_override.tf
  47. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  48. # example: *tfplan*
  49. # Ignore CLI configuration files
  50. .terraformrc
  51. terraform.rc
  52. **/secrets/**
  53. .terraform.lock.hcl