From f6b1954e8f382c6ddb1792ee805f7ac5fd4b73c2 Mon Sep 17 00:00:00 2001
From: Nemo <commits@captnemo.in>
Date: Sat, 16 Oct 2021 11:41:30 +0530
Subject: [PATCH] no more firefox sync, Mozilla makes this too hard

---
 firefox-sync.tf | 36 ------------------------------------
 1 file changed, 36 deletions(-)

diff --git a/firefox-sync.tf b/firefox-sync.tf
deleted file mode 100644
index f79b6a9..0000000 100644
--- a/firefox-sync.tf
+++ /dev/null
@@ -1,36 +1,0 @@
-module "firefox-sync" {
-  name   = "firefox-sync"
-  source = "./modules/container"
-  image  = "mozilla/syncserver:latest"
-
-  // Default is port 80
-  web = {
-    expose = true
-    port   = "5000"
-    host   = "firesync.${var.root-domain}"
-  }
-
-  resource = {
-    memory      = "400"
-    memory_swap = "400"
-  }
-
-  volumes = [
-    {
-      host_path      = "/mnt/xwing/data/firefox-sync"
-      container_path = "/data"
-    },
-  ]
-
-  env = [
-    "SYNCSERVER_PUBLIC_URL=https://firesync.${var.root-domain}",
-    "SYNCSERVER_SECRET=${data.pass_password.syncserver_secret.password}",
-    "SYNCSERVER_SQLURI=sqlite:////data/sync.db",
-    "SYNCSERVER_BATCH_UPLOAD_ENABLED=true",
-    "SYNCSERVER_FORCE_WSGI_ENVIRON=true",
-    "PORT=5000",
-  ]
-
-  networks = ["bridge"]
-}
-
--
rgit 0.1.5