diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4220221 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,32 @@ | |||
1 | .idea/ | ||
2 | aws-rc | ||
3 | connect_mysql.sh | ||
4 | # Local .terraform directories | ||
5 | **/.terraform/* | ||
6 | |||
7 | # .tfstate files | ||
8 | *.tfstate | ||
9 | *.tfstate.* | ||
10 | |||
11 | # Crash log files | ||
12 | crash.log | ||
13 | |||
14 | # Ignore any .tfvars files that are generated automatically for each Terraform run. Most | ||
15 | # .tfvars files are managed as part of configuration and so should be included in | ||
16 | # version control. | ||
17 | # | ||
18 | # example.tfvars | ||
19 | |||
20 | # Ignore override files as they are usually used to override resources locally and so | ||
21 | # are not checked in | ||
22 | override.tf | ||
23 | override.tf.json | ||
24 | *_override.tf | ||
25 | *_override.tf.json | ||
26 | |||
27 | # Include override files you do wish to add to version control using negated pattern | ||
28 | # | ||
29 | # !example_override.tf | ||
30 | |||
31 | # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan | ||
32 | # example: *tfplan* | ||