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 884B

12345678910111213141516171819202122232425262728293031323334
  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.tf.json
  19. *_override.tf
  20. *_override.tf.json
  21. # Include override files you do wish to add to version control using negated pattern
  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