-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
78 lines (62 loc) · 1.19 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
.idea
.vscode
.texpadtmp
.DS_Store
.ipynb_checkpoints
.ruff_cache
.mypy_cache
.pytest_cache
.coverage
__pycache__
dockerfile
.eggs
vessim.egg-info
venv
dist
# code coverage files
.coverage
coverage.xml
# poetry cache
poetry.lock
# result.csv that is printed after each sim
result.csv
# Terraform files
*.tfstate
*.tfstate.backup
*.tfplan
*.terraform.*
*.tfvars
# Ignore any .terraform directories
**/.terraform/*
# Ignore override files
override.tf
override.tf.json
*_override.tf
*_override.tf.json
# Ignore CLI configuration files
.terraformrc
terraform.rc
# Ignore sensitive files
*.pem
*.key
*.pub
/keys
/.ssh
# Ignore crash log files
crash.log
# Ignore provider-specific files
# Replace "PROVIDER_NAME" with the actual provider name, e.g., "aws", "azure", etc.
# Uncomment the relevant line if you're using a specific provider.
# */PROVIDER_NAME/*.tf
# */PROVIDER_NAME/*.tf.json
# Ignore .tfvars files that are not checked in
# Uncomment the relevant line if you have sensitive .tfvars files
# or you want to exclude all .tfvars files from version control.
# *.tfvars
# !example.tfvars
# Ignore generated files
*.tf.out
# Ignore local .env files used for environment variables
.env*
# Sphinx
_build