From ddbe0054573fbb2f7696a29b005bb362488096c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Fri, 23 Feb 2024 11:35:46 +0100 Subject: [PATCH] Comment out reference to clickhouse module --- tf/environments/prod/main.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tf/environments/prod/main.tf b/tf/environments/prod/main.tf index ea71c9e2..0f696d16 100644 --- a/tf/environments/prod/main.tf +++ b/tf/environments/prod/main.tf @@ -32,12 +32,13 @@ module "terraform_state_backend" { resource "local_file" "ansible_inventory" { depends_on = [ - module.clickhouse.server_ip + # Commented out because module is disabled + # module.clickhouse.server_ip ] content = templatefile("${path.module}/templates/ansible-inventory.tpl", { clickhouse_servers = [ - module.clickhouse.server_fqdm + # module.clickhouse.server_fqdm ] }) filename = "${path.module}/ansible/inventory.ini"