Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.0 KiB

  1. matrix_backup_enabled: false
  2. # Configure daily values within the cron tab
  3. matrix_backup_cron_day: "*/7"
  4. matrix_backup_base_path: "{{ matrix_base_data_path }}/matrix-backup"
  5. # Enable Remote AWS s3 backups
  6. # matrix_backup_bucket value should include the prefix
  7. # Example value
  8. # matrix_backup_bucket: s3://example-bucket/matrix-prefix/
  9. # s3://bucketname/prefix/
  10. matrix_backup_bucket: ""
  11. # Set this variable for any s3 compatible service
  12. # "https://nyc3.digitaloceanspaces.com"
  13. matrix_backup_bucket_endpoint: ""
  14. # AWS Access credentials
  15. matrix_backup_bucket_key_id: ""
  16. matrix_backup_bucket_key_secret: ""
  17. # Official utility from AWS
  18. # https://hub.docker.com/r/amazon/aws-cli
  19. # This variable is assigned at runtime. Overriding its value has no effect.
  20. matrix_backup_awscli_docker_image_v2: "amazon/aws-cli:2.0.16"
  21. matrix_backup_awscli_docker_image_latest: "{{ matrix_backup_awscli_docker_image_v2 }}"
  22. matrix_backup_awscli_docker_image: '{{ matrix_backup_awscli_docker_image_latest }}'
  23. # Use Rsync instead
  24. matrix_backup_rsync_target: ""