11# Local .terraform directories
22** /.terraform /*
33
4+ # Terraform lockfile
5+ .terraform.lock.hcl
6+
47# .tfstate files
58* .tfstate
69* .tfstate. *
710
811# Crash log files
912crash.log
10- crash. * .log
1113
12- # Exclude all .tfvars files, which are likely to contain sensitive data, such as
13- # password, private keys, and other secrets. These should not be part of version
14- # control as they are data points which are potentially sensitive and subject
14+ # Exclude all .tfvars files, which are likely to contain sentitive data, such as
15+ # password, private keys, and other secrets. These should not be part of version
16+ # control as they are data points which are potentially sensitive and subject
1517# to change depending on the environment.
1618* .tfvars
17- * .tfvars.json
1819
1920# Ignore override files as they are usually used to override resources locally and so
2021# are not checked in
@@ -23,15 +24,137 @@ override.tf.json
2324* _override.tf
2425* _override.tf.json
2526
26- # Ignore transient lock info files created by terraform apply
27- .terraform.tfstate.lock.info
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-
3527# Ignore CLI configuration files
3628.terraformrc
3729terraform.rc
30+
31+ # Logs
32+ logs
33+ * .log
34+ npm-debug.log *
35+ yarn-debug.log *
36+ yarn-error.log *
37+ lerna-debug.log *
38+ .pnpm-debug.log *
39+
40+ # Diagnostic reports (https://nodejs.org/api/report.html)
41+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
42+
43+ # Runtime data
44+ pids
45+ * .pid
46+ * .seed
47+ * .pid.lock
48+
49+ # Directory for instrumented libs generated by jscoverage/JSCover
50+ lib-cov
51+
52+ # Coverage directory used by tools like istanbul
53+ coverage
54+ * .lcov
55+
56+ # nyc test coverage
57+ .nyc_output
58+
59+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
60+ .grunt
61+
62+ # Bower dependency directory (https://bower.io/)
63+ bower_components
64+
65+ # node-waf configuration
66+ .lock-wscript
67+
68+ # Compiled binary addons (https://nodejs.org/api/addons.html)
69+ build /Release
70+
71+ # Dependency directories
72+ node_modules /
73+ jspm_packages /
74+
75+ # Snowpack dependency directory (https://snowpack.dev/)
76+ web_modules /
77+
78+ # TypeScript cache
79+ * .tsbuildinfo
80+
81+ # Optional npm cache directory
82+ .npm
83+
84+ # Optional eslint cache
85+ .eslintcache
86+
87+ # Optional stylelint cache
88+ .stylelintcache
89+
90+ # Microbundle cache
91+ .rpt2_cache /
92+ .rts2_cache_cjs /
93+ .rts2_cache_es /
94+ .rts2_cache_umd /
95+
96+ # Optional REPL history
97+ .node_repl_history
98+
99+ # Output of 'npm pack'
100+ * .tgz
101+
102+ # Yarn Integrity file
103+ .yarn-integrity
104+
105+ # dotenv environment variable files
106+ .env
107+ .env.development.local
108+ .env.test.local
109+ .env.production.local
110+ .env.local
111+
112+ # parcel-bundler cache (https://parceljs.org/)
113+ .cache
114+ .parcel-cache
115+
116+ # Next.js build output
117+ .next
118+ out
119+
120+ # Nuxt.js build / generate output
121+ .nuxt
122+ dist
123+
124+ # Gatsby files
125+ .cache /
126+ # Comment in the public line in if your project uses Gatsby and not Next.js
127+ # https://nextjs.org/blog/next-9-1#public-directory-support
128+ # public
129+
130+ # vuepress build output
131+ .vuepress /dist
132+
133+ # vuepress v2.x temp and cache directory
134+ .temp
135+ .cache
136+
137+ # Docusaurus cache and generated files
138+ .docusaurus
139+
140+ # Serverless directories
141+ .serverless /
142+
143+ # FuseBox cache
144+ .fusebox /
145+
146+ # DynamoDB Local files
147+ .dynamodb /
148+
149+ # TernJS port file
150+ .tern-port
151+
152+ # Stores VSCode versions used for testing VSCode extensions
153+ .vscode-test
154+
155+ # yarn v2
156+ .yarn /cache
157+ .yarn /unplugged
158+ .yarn /build-state.yml
159+ .yarn /install-state.gz
160+ .pnp. *
0 commit comments