From c1353a7991efc62986288a03268116c5c1819783 Mon Sep 17 00:00:00 2001 From: lcndsmr Date: Mon, 29 Jan 2024 14:29:21 +0100 Subject: [PATCH] changed defaults to something more sane --- README.md | 8 ++++---- defaults/main.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4f1050b..7e5b0c1 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,12 @@ pg_backup_schedule: "0 0 * * *" pg_backup_config: storage: s3: - endpoint: "http://localhost:9000" - accessKey: "minio" - secretKey: "minio123" + endpoint: "s3.example.com" + accessKey: "example" + secretKey: "example" bucket: "test" databases: - - host: "localhost" + - host: "database.example.com" port: 5432 username: "postgres" database: "postgres" diff --git a/defaults/main.yml b/defaults/main.yml index a7994be..ebace93 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -5,12 +5,12 @@ pg_backup_schedule: "0 0 * * *" pg_backup_config: storage: s3: - endpoint: "http://localhost:9000" - accessKey: "minio" - secretKey: "minio123" + endpoint: "s2.example.com" + accessKey: "example" + secretKey: "example" bucket: "test" databases: - - host: "localhost" + - host: "database.example.com" port: 5432 username: "postgres" database: "postgres"