This repository has been archived by the owner on Sep 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
107 lines (75 loc) · 1.8 KB
/
main.tf
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
provider "gitlab" {
token = "${var.gitlab_token}"
insecure = "true"
base_url = "http://git.jrbeverly.me/api/v4/"
}
##
## Root Gitlab
resource "gitlab_group" "primary" {
name = "Repositories - jrbeverly"
path = "jrbeverlylabs"
description = "The personal repositories of jrbeverly."
visibility_level = "public"
}
##
## Subgroups
module "blockycraft" {
source = "./modules/blockycraft"
parent = "${gitlab_group.primary.id}"
}
module "dockerfiles" {
source = "./modules/dockerfiles"
parent = "${gitlab_group.primary.id}"
}
module "friending" {
source = "./modules/friending"
parent = "${gitlab_group.primary.id}"
}
module "githooks" {
source = "./modules/githooks"
parent = "${gitlab_group.primary.id}"
}
module "gitlab" {
source = "./modules/gitlab"
parent = "${gitlab_group.primary.id}"
}
module "homelab" {
source = "./modules/homelab"
parent = "${gitlab_group.primary.id}"
}
module "jrbeverly" {
source = "./modules/jrbeverly"
parent = "${gitlab_group.primary.id}"
}
module "mirroring" {
source = "./modules/mirroring"
parent = "${gitlab_group.primary.id}"
}
module "stacks" {
source = "./modules/stacks"
parent = "${gitlab_group.primary.id}"
}
module "uwaterloo" {
source = "./modules/uwaterloo"
parent = "${gitlab_group.primary.id}"
}
module "vagrant-desktop" {
source = "./modules/vagrant-desktop"
parent = "${gitlab_group.primary.id}"
}
module "workbench" {
source = "./modules/workbench"
parent = "${gitlab_group.primary.id}"
}
module "workspaces" {
source = "./modules/workspaces"
parent = "${gitlab_group.primary.id}"
}
module "xplatformer" {
source = "./modules/xplatformer"
parent = "${gitlab_group.primary.id}"
}
module "xunit" {
source = "./modules/xunit"
parent = "${gitlab_group.primary.id}"
}