no more firefox sync, Mozilla makes this too hard
Diff
firefox-sync.tf | 36 ------------------------------------
1 file changed, 36 deletions(-)
@@ -1,36 +1,0 @@
module "firefox-sync" {
name = "firefox-sync"
source = "./modules/container"
image = "mozilla/syncserver:latest"
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"]
}