From bf37b4d66d60e037a5ebc4017b6f5ac543958567 Mon Sep 17 00:00:00 2001 From: Salt Date: Thu, 24 Dec 2020 09:43:57 -0600 Subject: [PATCH] Reorganize backup defaults to make a bit more sense --- roles/backup/defaults/main.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/roles/backup/defaults/main.yml b/roles/backup/defaults/main.yml index af181cb..51bdf65 100644 --- a/roles/backup/defaults/main.yml +++ b/roles/backup/defaults/main.yml @@ -7,6 +7,13 @@ backup_time: "*-*-* 02:00:00" # So January 5th, 2021 at 3:41PM would be 2021-01-05-1541 backup_dateformat: "%Y-%m-%d-%H%M" +# S3 configuration for scripts that use it +# Which bucket to upload the backup to +backup_s3_bucket: replaceme +# Credentials for the bucket +backup_s3_aws_access_key_id: REPLACEME +backup_s3_aws_secret_access_key: REPLACEME + # List of files/directories to back up # Note that tar is NOT instructed to recurse through symlinks # If you want it to do that, end the path with a slash! @@ -16,8 +23,3 @@ backup_s3backup_list_extra: [] # Note that passing f here is probably a bad idea backup_s3backup_tar_args: cz backup_s3backup_tar_args_extra: "" -# Which bucket to upload the backup to -backup_s3_bucket: replaceme -# Credentials for the bucket -backup_s3_aws_access_key_id: REPLACEME -backup_s3_aws_secret_access_key: REPLACEME