-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
39 lines (28 loc) · 883 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
.idea/*
.history/
*.vsix
# Terraform local state
*.tfstate
*.tfstate*.backup
# File with ad-hoc input values to simplify invoking terraform with same inputs multiple times
terraform.tfvars
# Terraform plugins dir
.terraform
# Terraform file lock
.terraform.tfstate.lock
.terraform.tfstate.lock.info
# Usually, lock files are committed to VCS, but the goal of this repo is to have low overhead.
# Lock files are needed to have reproducible deployments in real scenarios. We don't need
# that in this repo, because our terraform projects are exemplary, and unlikely to break.
.terraform.lock.hcl
.tmuxp.yaml
# Ignore JS/TS dependencies installed with npm
node_modules
# File generated by the inventory-collector should not be committed
inventory.csv