From 2997542114ada4aa25ce0da48aa2d2afe37026f4 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 24 Jan 2022 10:00:15 +0000 Subject: [PATCH] lib: disable backup by default, add note to configuration --- authentik/lib/default.yml | 2 +- website/docs/installation/configuration.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/authentik/lib/default.yml b/authentik/lib/default.yml index 032f4ac8e..8bd562c7e 100644 --- a/authentik/lib/default.yml +++ b/authentik/lib/default.yml @@ -6,7 +6,7 @@ postgresql: port: 5432 password: 'env://POSTGRES_PASSWORD' backup: - enabled: true + enabled: false s3_backup: access_key: "" secret_key: "" diff --git a/website/docs/installation/configuration.md b/website/docs/installation/configuration.md index 4f36e1e25..ff8a111f1 100644 --- a/website/docs/installation/configuration.md +++ b/website/docs/installation/configuration.md @@ -25,7 +25,11 @@ All of these variables can be set to values, but you can also use a URI-like for ### PostgreSQL Backup Settings -- `AUTHENTIK_POSTGRESQL__BACKUP__ENABLED`: Controls if the inbuilt backup-mechanism is enabled, defaults to true (new in 2021.10). +:::info +The integrated backup is deprecated in 2022.1 and will be removed in a future version. +::: + +- `AUTHENTIK_POSTGRESQL__BACKUP__ENABLED`: Controls if the inbuilt backup-mechanism is enabled, defaults to false (new in 2021.10). Optionally enable automated database backups to S3 or S3-compatible storages.