Skip to content

Commit a60306c

Browse files
committed
Generator TF ready.
1 parent f7b67dc commit a60306c

21 files changed

+2899
-0
lines changed

.gitignore

+37
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
*.dll
55
*.so
66
*.dylib
7+
*tfplan*
8+
9+
# Local .terraform directories
10+
**/.terraform/*
11+
12+
# .tfstate files
13+
*.tfstate
14+
*.tfstate.*
15+
*.tfstate*
16+
717

818
# Test binary, built with `go test -c`
919
*.test
@@ -13,3 +23,30 @@
1323

1424
# Dependency directories (remove the comment below to include it)
1525
# vendor/
26+
27+
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
28+
# .tfvars files are managed as part of configuration and so should be included in
29+
# version control.
30+
#
31+
*.tfvars
32+
33+
# Ignore override files as they are usually used to override resources locally and so
34+
# are not checked in
35+
override.tf
36+
override.tf.json
37+
*_override.tf
38+
*_override.tf.json
39+
40+
# Include override files you do wish to add to version control using negated pattern
41+
#
42+
# !example_override.tf
43+
44+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
45+
# example: *tfplan*
46+
47+
# IntelliJ
48+
.idea
49+
50+
# vscode
51+
.vscode
52+

0 commit comments

Comments
 (0)