Introduction
Introduction Statistics Contact Development Disclaimer Help
terraform.tfvars - infra - Terraform IoC for my remote (Hetzner) and local (Inc…
git clone git://jay.scot/infra
Log
Files
Refs
README
---
terraform.tfvars (982B)
---
1 nodes = {
2 blocky = {
3 image = "images:alpine/3.20/cloud"
4 cloudinit_userdata = "./cloudinit/blocky.yaml"
5 net_addr = "192.168.2.10/24"
6 net_gw = "192.168.2.1"
7 }
8 nas = {
9 image = "images:alpine/3.20/cloud"
10 cloudinit_userdata = "./cloudinit/nas.yaml"
11 net_addr = "192.168.2.14/24"
12 net_gw = "192.168.2.1"
13 devices = {
14 storage = {
15 type = "disk"
16 properties = {
17 path = "/share"
18 source = "/srv"
19 shift = true
20 }
21 }
22 }
23 }
24 git = {
25 image = "images:alpine/3.20/cloud"
26 cloudinit_userdata = "./cloudinit/git.yaml"
27 net_addr = "192.168.2.12/24"
28 net_gw = "192.168.2.1"
29 devices = {
30 repos = {
31 type = "disk"
32 properties = {
33 path = "/srv/git"
34 source = "/srv/services/git"
35 shift = true
36 }
37 }
38 }
39 }
40
41 }
You are viewing proxied material from jay.scot. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.