Skip to content

Commit 037227d

Browse files
committed
chore: add gitignore
1 parent 3329d29 commit 037227d

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
build/
2+
plan.out
3+
plan.out.json
4+
5+
# Local .terraform directories
6+
.terraform/
7+
8+
# .tfstate files
9+
*.tfstate
10+
*.tfstate.*
11+
12+
# Crash log files
13+
crash.log
14+
15+
# Exclude all .tfvars files, which are likely to contain sentitive 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+
#
20+
*.tfvars
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+
#
31+
# !example_override.tf
32+
33+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
34+
# example: *tfplan*
35+
36+
# Ignore Editor configuration files
37+
.vscode
38+
39+
# Ignore CLI configuration files
40+
.terraformrc
41+
terraform.rc
42+
**/.terraform.lock.hcl
43+
44+
go.mod
45+
go.sum
46+
47+
.DS_Store

0 commit comments

Comments
 (0)