diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -1 +1,37 @@ | |||
1 | .idea/ | 1 | .idea/ |
2 | admin-rc | ||
3 | |||
4 | # Local .terraform directories | ||
5 | **/.terraform/* | ||
6 | |||
7 | # .tfstate files | ||
8 | *.tfstate | ||
9 | *.tfstate.* | ||
10 | |||
11 | # Crash log files | ||
12 | crash.log | ||
13 | crash.*.log | ||
14 | |||
15 | # Exclude all .tfvars files, which are likely to contain sensitive data, such as | ||
16 | # password, private keys, and other secrets. These should not be part of version | ||
17 | # control as they are data points which are potentially sensitive and subject | ||
18 | # to change depending on the environment. | ||
19 | *.tfvars | ||
20 | *.tfvars.json | ||
21 | |||
22 | # Ignore override files as they are usually used to override resources locally and so | ||
23 | # are not checked in | ||
24 | override.tf | ||
25 | override.tf.json | ||
26 | *_override.tf | ||
27 | *_override.tf.json | ||
28 | |||
29 | # Include override files you do wish to add to version control using negated pattern | ||
30 | # !example_override.tf | ||
31 | |||
32 | # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan | ||
33 | # example: *tfplan* | ||
34 | |||
35 | # Ignore CLI configuration files | ||
36 | .terraformrc | ||
37 | terraform.rc | ||