-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (58 loc) · 1.47 KB
/
.gitignore
File metadata and controls
66 lines (58 loc) · 1.47 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
66
logs/
.vault_password.txt
.env*
!.env.example
!.env.j2
.*rc
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*
# Group_vars
group_vars/all/z_common_hosts_secrets/*
!group_vars/all/z_common_hosts_secrets/.gitkeep
# Host vars
host_vars/*
!host_vars/example/
!host_vars/example_for_analytics_server.yaml
!host_vars/example_for_backup_node.yaml
!host_vars/example_for_backup_server.yaml
!host_vars/example_for_vpn.yaml
!host_vars/example_for_proxy_client.yaml
# Inventory
inventory/*
!inventory/production_example.ini
!inventory/staging_example.ini
!inventory/group_vars
inventory/group_vars/all/z_common_hosts_secrets/*
!inventory/group_vars/all/z_common_hosts_secrets/.gitkeep
inventory/host_vars
!inventory/host_vars/example/
!inventory/host_vars/example_for_analytics_server.yaml
!inventory/host_vars/example_for_backup_node.yaml
!inventory/host_vars/example_for_backup_server.yaml
!inventory/host_vars/example_for_vpn.yaml
!inventory/host_vars/example_for_proxy_client.yaml
# Assets only common and example
assets/*
!assets/hosts-list/
assets/hosts-list/*
!assets/hosts-list/common/
!assets/hosts-list/common/**/*
!assets/hosts-list/example/
!assets/hosts-list/example/**/*
# Do not include SSH keys
group_vars/all/user.yaml
group_vars/general_vps_prepare/ssh_keys.yaml
group_vars/general_vps_prepare/api_tokens.yaml
# Python cache
/**/__pycache__/
# Temporary files
temp/*
!temp/
temp/**/*
!temp/**/
!temp/**/.gitkeep