Hybrid cloud cluster monorepo with Ansible, K8s, NixOS, and Terraform. cute.haus
ansible terraform nix k8s
0

Configure Feed

Select the types of activity you want to include in your feed.

use pastoria for ingress

Aly Raffauf (Jun 8, 2026, 7:04 PM EDT) fb05b0fd 318f35ff

+9 -8
+1 -1
nix/hosts/pastoria/default.nix
··· 48 48 serverAddr = "https://solaceon:6443"; 49 49 tlsSans = ["solaceon" "eterna"]; 50 50 zone = "cloud-ovhcloud"; 51 - ingress = false; 51 + ingress = true; 52 52 }; 53 53 54 54 vps.enable = true;
+2 -2
terraform/aly_codes.tf
··· 13 13 zone_id = local.zones.aly_codes 14 14 name = each.value 15 15 type = "A" 16 - content = local.hosts.snowpoint 16 + content = local.hosts.pastoria 17 17 proxied = true 18 18 ttl = 1 19 19 tags = [] ··· 24 24 zone_id = local.zones.aly_codes 25 25 name = "ssh.aly.codes" 26 26 type = "A" 27 - content = local.hosts.snowpoint 27 + content = local.hosts.pastoria 28 28 proxied = false 29 29 ttl = 1 30 30 tags = []
+3 -3
terraform/aly_social.tf
··· 2 2 zone_id = local.zones.aly_social 3 3 name = "*.aly.social" 4 4 type = "A" 5 - content = local.hosts.snowpoint 5 + content = local.hosts.pastoria 6 6 proxied = false 7 7 ttl = 1 8 8 tags = [] ··· 13 13 zone_id = local.zones.aly_social 14 14 name = "aly.social" 15 15 type = "A" 16 - content = local.hosts.snowpoint 16 + content = local.hosts.pastoria 17 17 proxied = true 18 18 ttl = 1 19 19 tags = [] ··· 24 24 zone_id = local.zones.aly_social 25 25 name = "status.aly.social" 26 26 type = "A" 27 - content = local.hosts.snowpoint 27 + content = local.hosts.pastoria 28 28 proxied = true 29 29 ttl = 1 30 30 tags = []
+1 -1
terraform/cute_haus.tf
··· 25 25 zone_id = local.zones.cute_haus 26 26 name = each.key 27 27 type = "A" 28 - content = local.hosts.snowpoint 28 + content = local.hosts.pastoria 29 29 proxied = each.value 30 30 ttl = 1 31 31 tags = []
+1
terraform/locals.tf
··· 1 1 locals { 2 2 hosts = { 3 + pastoria = "51.81.87.134" 3 4 solaceon = hcloud_server.solaceon.ipv4_address 4 5 snowpoint = "152.53.90.225" 5 6 }
+1 -1
terraform/morsels_blue.tf
··· 2 2 zone_id = local.zones.morsels_blue 3 3 name = "morsels.blue" 4 4 type = "A" 5 - content = local.hosts.snowpoint 5 + content = local.hosts.pastoria 6 6 proxied = true 7 7 ttl = 1 8 8 tags = []