feat: compute subnet

This commit is contained in:
2025-12-30 12:38:53 -05:00
parent 1e17d87b4f
commit 70735d8f22
3 changed files with 22 additions and 4 deletions

View File

@@ -1,10 +1,11 @@
locals {
net-cidr = "10.0.0.0/8"
net-cidr = "10.0.0.0/8"
subnet-cidr = "10.0.2.0/24"
nat-private-ip = "10.0.1.5"
servers = {
Node0 = "10.0.2.0"
Node1 = "10.0.2.1"
node-0 = "10.0.2.0"
node-1 = "10.0.2.1"
}
}