.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .terraform*
  2. # Local .terraform directories
  3. **/.terraform/*
  4. # .tfstate files
  5. *.tfstate
  6. *.tfstate.*
  7. # Crash log files
  8. crash.log
  9. crash.*.log
  10. # Exclude all .tfvars files, which are likely to contain sensitive data, such as
  11. # password, private keys, and other secrets. These should not be part of version
  12. # control as they are data points which are potentially sensitive and subject
  13. # to change depending on the environment.
  14. *.tfvars
  15. *.tfvars.json
  16. # Ignore override files as they are usually used to override resources locally and so
  17. # are not checked in
  18. override.tf
  19. override.tf.json
  20. *_override.tf
  21. *_override.tf.json
  22. # Include override files you do wish to add to version control using negated pattern
  23. # !example_override.tf
  24. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  25. # example: *tfplan*
  26. # Ignore CLI configuration files
  27. .terraformrc
  28. terraform.rc
  29. # Generated files by hugo
  30. /public/
  31. /resources/_gen/
  32. /assets/jsconfig.json
  33. hugo_stats.json
  34. # Executable may be added to repository
  35. hugo.exe
  36. hugo.darwin
  37. hugo.linux
  38. # Temporary lock file while building
  39. /.hugo_build.lock