diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2018-11-03 23:06:09 +0100 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-11-03 18:06:09 -0400 |
commit | 57a8440db372d3b2a01d3ef12a4a560424a08657 (patch) | |
tree | 6afb467015b1e695ea54eef6d6820d92827eacd7 /options/gitignore/Terraform | |
parent | 54259e2f880365d65340ade6608007b3c5eb2ed5 (diff) | |
download | gitea-57a8440db372d3b2a01d3ef12a4a560424a08657.tar.gz gitea-57a8440db372d3b2a01d3ef12a4a560424a08657.zip |
Update gitignore list (#5258)
* update gitignore
* Handle symlink in tar
* Add some logs
Diffstat (limited to 'options/gitignore/Terraform')
-rw-r--r-- | options/gitignore/Terraform | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/options/gitignore/Terraform b/options/gitignore/Terraform index 41859c81f1..a893580346 100644 --- a/options/gitignore/Terraform +++ b/options/gitignore/Terraform @@ -1,6 +1,26 @@ -# Compiled files +# Local .terraform directories +**/.terraform/* + +# .tfstate files *.tfstate -*.tfstate.backup +*.tfstate.* + +# Crash log files +crash.log + +# Ignore any .tfvars files that are generated automatically for each Terraform run. Most +# .tfvars files are managed as part of configuration and so should be included in +# version control. +# +# example.tfvars + +# Ignore override files as they are usually used to override resources locally and so +# are not checked in +override.tf +override.tf.json +*_override.tf +*_override.tf.json -# Module directory -.terraform/ +# Include override files you do wish to add to version control using negated pattern +# +# !example_override.tf |