.gitignore 1.3 KB

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