From e3f2468c41a22dad1e43d4a0bbcb1c58234a9859 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 30 Dec 2025 12:43:58 -0500 Subject: [PATCH] fix: ips not valid --- secrets/terraform_outputs.yml | 2 +- terraform/variables.tf | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/secrets/terraform_outputs.yml b/secrets/terraform_outputs.yml index 9e26dfe..ac9144a 100755 --- a/secrets/terraform_outputs.yml +++ b/secrets/terraform_outputs.yml @@ -1 +1 @@ -{} \ No newline at end of file +{"nat-public-ip": {"sensitive": false, "type": "string", "value": "37.27.12.195"}} \ No newline at end of file diff --git a/terraform/variables.tf b/terraform/variables.tf index 5a52610..83fb9e2 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -2,10 +2,10 @@ locals { net-cidr = "10.0.0.0/8" subnet-cidr = "10.0.2.0/24" - nat-private-ip = "10.0.1.5" + nat-private-ip = "10.0.2.8" servers = { - node-0 = "10.0.2.0" - node-1 = "10.0.2.1" + node-a = "10.0.2.9" + node-b = "10.0.2.10" } }