-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
65 lines (47 loc) · 1.18 KB
/
.gitignore
File metadata and controls
65 lines (47 loc) · 1.18 KB
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
.gitignore
# direnv cache directory
.direnv
# editor temporary files
.vscode
*~
# terraform local cache
**/.terraform/
# terraform local state
**/terraform.tfstate*
# terragrunt generated files
terragrunt/environments/**/backend.tf
terragrunt/environments/**/provider.tf
# terragrunt cache
**/.terragrunt-cache
# terragrunt debug variables
terragrunt-debug.tfvars.json
# ansible vault secret
**/.vault_pass
# generated / rendered files
terragrunt/environments/**/worker*/citool-config/environment.yaml
terragrunt/environments/**/server/pods/nginx/*.conf
terragrunt/environments/**/server/pods/server.yaml
terragrunt/environments/**/server/pods/tmt-web.yaml
terragrunt/environments/**/server/ec2/server.bu
terragrunt/environments/**/server/ec2/server.ign
terragrunt/environments/**/server/ec2/server.ign.json
# secrets
.vault_pass
terragrunt/environments/*/citool-config/*rsa*
# data maintained by direnv
.direnv
# pytest temporary files
assets
.pytest
report.html
# rendered template files
**/.rendered
# decrypted secrets
**/*.decrypted
# python cache
**/__pycache__
# mypy cache
**/.mypy_cache
# ansible roles from galaxy
ansible/roles/geerlingguy.swap
ansible/roles/geerlingguy.node_exporter