This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vars.tfvars
171 lines (132 loc) · 4.26 KB
/
vars.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
vms = [
{
name = "basil" # Upstream Rancher cluster
domain = "blahaj.sh"
vcpu = 4
memory = 16384
cloudinit_image = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
disk_size = 107374182400 # 100 GiB
ssh_keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGSj6rJkx/d2w1c4qagmh7s/TJQHGOAanWprgiHzUKIW"
]
dhcp = true
network_interfaces = [
{
name = "ens3"
macvtap = "eno1"
mac = "00:50:56:00:04:52"
additional_routes = [
{
network = "0.0.0.0/0"
gateway = "5.9.32.193"
}
]
},
{
name = "ens4"
network_name = "local_net"
dhcp = false
ip = "192.168.51.11/24"
gateway = "192.168.51.1"
additional_routes = [
{
network = "192.168.100.128/26"
gateway = "192.168.51.1"
}
]
},
]
spice_server_enabled = false
ansible_groups = ["vm", "cloud", "upstream", "rancher"]
ansible_user = "ubuntu"
ansible_host = "basil"
},
{
name = "aubrey" # For my private use
domain = "blahaj.sh"
vcpu = 12
memory = 49152
cloudinit_image = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
disk_size = 375809638400 # 350 GiB
ssh_keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGSj6rJkx/d2w1c4qagmh7s/TJQHGOAanWprgiHzUKIW"
]
dhcp = true
network_interfaces = [
{
name = "ens3"
macvtap = "eno1"
mac = "00:50:56:00:07:CF"
additional_routes = [
{
network = "0.0.0.0/0"
gateway = "5.9.32.193"
}
]
},
{
name = "ens4"
network_name = "local_net"
dhcp = false
ip = "192.168.51.12/24"
gateway = "192.168.51.1"
additional_routes = [
{
network = "192.168.100.128/26"
gateway = "192.168.51.1"
},
{
network = "10.107.0.0/16"
gateway = "192.168.51.1"
}
]
},
]
spice_server_enabled = true
ansible_groups = ["vm", "cloud", "downstream", "personal"]
ansible_user = "ubuntu"
ansible_host = "aubrey"
},
{
name = "kel" # For services I host that need to be publically accessible
domain = "blahaj.sh"
vcpu = 6
memory = 24576
cloudinit_image = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
disk_size = 107374182400 # 100 GiB
ssh_keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGSj6rJkx/d2w1c4qagmh7s/TJQHGOAanWprgiHzUKIW"
]
dhcp = true
network_interfaces = [
{
name = "ens3"
macvtap = "eno1"
mac = "00:50:56:00:0C:B7"
additional_routes = [
{
network = "0.0.0.0/0"
gateway = "5.9.32.193"
}
]
},
{
name = "ens4"
network_name = "local_net"
dhcp = false
ip = "192.168.51.13/24"
gateway = "192.168.51.1"
additional_routes = [
{
network = "192.168.100.128/26"
gateway = "192.168.51.1"
}
]
},
]
spice_server_enabled = false
ansible_groups = ["vm", "cloud", "downstream", "public"]
ansible_user = "ubuntu"
ansible_host = "kel"
},
]