feat(docs): assign koishi address

This commit is contained in:
arcnmx 2024-05-21 10:28:00 -07:00
parent e4ab8c27c8
commit 55dc7d2b06
4 changed files with 31 additions and 0 deletions

View file

@ -159,6 +159,20 @@
}
}
},
"koishi": {
"network": {
"hostName": "koishi",
"networks": {
"int": null,
"local": {
"address4": "10.1.1.68",
"address6": null,
"macAddress": null
},
"tail": null
}
}
},
"kuwubernetes": {
"network": {
"hostName": "kuwubernetes",

View file

@ -38,6 +38,7 @@ satorin:: `10.1.1.64`
fire10:: `10.1.1.65`
chromecast:: `10.1.1.66`
bedroom_tv:: `10.1.1.67`
koishi:: `10.1.1.68`
outdoor-friend:: `10.1.1.81`
bedroom-friend:: `10.1.1.82`

View file

@ -0,0 +1,9 @@
_: {
type = "Linux";
network.networks = {
local = {
address4 = "10.1.1.68";
address6 = null; # TODO
};
};
}

View file

@ -177,3 +177,10 @@ module "chen_system_records" {
zone_zone = cloudflare_zone.gensokyo-zone_zone.zone
net_data = local.systems.chen.network
}
module "koishi_system_records" {
source = "./system/records"
zone_id = cloudflare_zone.gensokyo-zone_zone.id
zone_zone = cloudflare_zone.gensokyo-zone_zone.zone
net_data = local.systems.koishi.network
}