OpenTofu.gitignore 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Local .terraform directories
  2. **/.terraform/*
  3. # .tfstate files
  4. *.tfstate
  5. *.tfstate.*
  6. # Crash log files
  7. crash.log
  8. crash.*.log
  9. # Exclude all .tfvars files, which are likely to contain sensitive data, such as
  10. # password, private keys, and other secrets. These should not be part of version
  11. # control as they are data points which are potentially sensitive and subject
  12. # to change depending on the environment.
  13. *.tfvars
  14. *.tfvars.json
  15. # Ignore override files as they are usually used to override resources locally and so
  16. # are not checked in
  17. override.tf
  18. override.tofu
  19. override.tf.json
  20. override.tofu.json
  21. *_override.tf
  22. *_override.tofu
  23. *_override.tf.json
  24. *_override.tofu.json
  25. # Ignore transient lock info files created by tofu apply
  26. .terraform.tfstate.lock.info
  27. # Include override files you do wish to add to version control using negated pattern
  28. # !example_override.tf
  29. # !example_override.tofu
  30. # Include tfplan files to ignore the plan output of command: tofu plan -out=tfplan
  31. # example: *tfplan*
  32. # Ignore CLI configuration files
  33. .terraformrc
  34. terraform.rc