From e680735cb8202e7eda079f15620860a07aaf3eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 14 Mar 2024 22:09:07 +0100 Subject: [PATCH] drop statusim.net domain config in favor of status.im MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- db.tf | 1 - node.tf | 1 - variables.tf | 5 ----- 3 files changed, 7 deletions(-) delete mode 100644 variables.tf diff --git a/db.tf b/db.tf index 5a09447..8bbeb09 100644 --- a/db.tf +++ b/db.tf @@ -6,7 +6,6 @@ module "db" { group = "status-db" env = local.ws.env stage = local.ws.stage - domain = var.domain /* scaling */ host_count = local.ws["db_count"] diff --git a/node.tf b/node.tf index e651fa8..f37084d 100644 --- a/node.tf +++ b/node.tf @@ -5,7 +5,6 @@ module "node" { group = "status-node" env = local.ws.env stage = local.ws.stage - domain = var.domain /* scaling */ host_count = local.ws["node_count"] diff --git a/variables.tf b/variables.tf deleted file mode 100644 index fd89d3c..0000000 --- a/variables.tf +++ /dev/null @@ -1,5 +0,0 @@ -variable "domain" { - description = "DNS Domain to update" - type = string - default = "statusim.net" -}