You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Terraform.gitignore 860B

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