-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars
366 lines (318 loc) · 7.41 KB
/
terraform.tfvars
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
github_username = "pimvh"
# structure of package versions currently present in repositories
# currently only includes repositories pinned for Ansible
pinned_versions = {
ansible = {
version = "9.3.0"
},
ansible-lint = {
version = "24.2.0"
},
molecule = {
version = "24.2.0"
}
"molecule-plugins[docker]" = {
version = "23.5.3"
},
pytest-testinfra = {
version = "10.1.0"
}
}
# list of repositories, with name a key
# description -- description of the repo
# licence -- license of the repository
# is_private -- whether the repo is private
# type -- type of repository
# secrets -- GitHub secrets which are present in the repository (encrypted using repos public key, see encrypt_secret.py)
# molecule_testing_instances -- map of docker images organized by OS -> version(s)
# pinned_versions -- map of pinned versions (subset of globally pinned versions, is merged with global map)
github_repositories = {
#################
# opentofu
#################
tofustack = {
description = "My personal tofustack"
license = "apache-2.0"
type = "tofustack"
},
#################
# Ansible roles
#################
add_github_hostkeys = {
description = "Ansible role to add SSH hostkeys for Github"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"github",
"hostkeys"
]
},
certbot = {
description = "Ansible role to configure certbot"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"certbot",
"tls"
]
},
cloud_init = {
description = "Ansible cloud-init role"
license = "gpl-3.0"
topics = [
"ansible",
"role",
"cloud-init",
"ssh-ca",
"ansible-pull",
"dualstack"
]
# TODO: add ansible role
# type = "ansible-role"
},
fail2ban = {
description = "Ansible role to install fail2ban"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"fail2ban",
"hardening"
]
},
libvirt = {
description = "Ansible role to manage libvirt VMs"
license = "gpl-3.0"
topics = [
"ansible",
"role",
"hypervisor",
"dualstack",
"vm",
]
# TODO: add ansible role
# type = "ansible-role"
},
nftables = {
description = "Ansible role to configure nftables"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"firewall",
"nftables"
]
},
postfix = {
description = "Ansible role to setup Postfix"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"postfix",
"email",
"dkim",
"spf",
"dmarc"
]
molecule_testing_instances = {
ubuntu = [
"jammy-jellyfish"
]
}
},
nsd = {
description = "Ansible role to configure NSD"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"nsd",
"dns-server",
"dnssec",
"zsk-rollover",
]
molecule_testing_instances = {
ubuntu = [
"jammy-jellyfish"
]
}
},
ssh = {
description = "Ansible role to configure SSH"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"openssh",
"ssh-ca",
]
molecule_testing_instances = {
ubuntu = [
"jammy-jellyfish"
]
}
}
ssh_keygen = {
description = "Ansible role to generate SSH keys"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"sshkeygen",
"ssh-keys"
]
molecule_testing_instances = {
ubuntu = [
"jammy-jellyfish"
]
}
},
systemd_failmail = {
description = "Ansible role to add a failmail systemd service to a host"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"systemd",
"monitoring",
"email"
]
},
unbound = {
description = "Ansible role to configure Unbound"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"resolver",
"unbound",
"dnssec"
]
},
wireguard = {
description = "Ansible role to configure Wireguard"
license = "gpl-3.0"
type = "ansible-role"
topics = [
"wireguard",
"vpn"
]
molecule_testing_instances = {
ubuntu = [
"jammy-jellyfish"
]
}
},
#################
# other public repositories
#################
"molecule-images" = {
description = "Docker image used for testing ansible roles with molecule"
license = "MIT"
type = "molecule-images"
topics = [
"docker",
"molecule",
]
}
nrich = {
description = "Nrich.py is a tool to query the shodan internetdb"
license = "gpl-3.0"
type = "python-package"
topics = [
"python",
"shodan",
"internetdb"
]
}
simpleNFS = {
description = "Simple Network File Share created for masters assignment"
type = "python"
},
simpleenigma = {
description = "This repo implements a simple enigma machine"
type = "python"
},
telegrambot_simple = {
description = "Implements a simple telegram bot based using the python-telegram-bot wrapper"
type = "python"
},
sudokusolver = {
description = "Implements a sudokusolver"
type = "python"
},
#################
# private repos
#################
ansiblestack = {
description = "My personal ansiblestack"
is_private = true
type = "ansiblestack"
},
ansiblepull = {
description = "Ansible pull configuration"
is_private = true
type = "ansible-playbook"
},
dotfiles = {
description = "My personal dotfiles"
is_private = true
type = "config-files"
},
home-manager = {
description = "NixOS home-manager configuration"
is_private = true
type = "nix"
},
nix-configuration = {
description = "NixOS configuration"
is_private = true
type = "nix"
},
pycropster = {
description = "Python API client for Cropster."
is_private = true
type = "python"
}
nvim = {
description = "My neovim configuration"
is_private = true
type = "config-files"
},
rp_parser = {
description = "Parse Research Project from the OS3 website, and mail the differences to an address."
is_private = true
type = "python"
},
fetchmemes = {
description = "Gets memes from Reddit (RMAAS)"
is_private = true
type = "python"
},
questionair = {
description = "Questionair script"
is_private = true
type = "python"
},
personal_website = {
description = "My personal website"
is_private = true
type = "hugo"
}
nextcloud = {
description = "Nextcloud docker setup for raspberrypi"
is_private = true
type = "docker"
},
homeassistant = {
description = "Homeassistant docker setup for raspberrypi"
is_private = true
type = "docker"
},
#################
# old repos
#################
datastructuren2019 = {
description = "Assignments for datastructuren 2019"
is_private = true
type = "python"
},
thesis-code = {
description = "Code for Bachelor thesis"
is_private = true
type = "python"
},
}