1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [b2-unencrypted]
- type = b2
- account = {{ b2_account_key }}
- key = {{ b2_key_id }}
- hard_delete = true
- {% if backups == 'all' or 'full_images' in backups %}
- [b2-backups]
- type = crypt
- remote = b2-unencrypted:{{ b2_backups_bucket }}
- filename_encryption = standard
- password = {{ b2_backups_config_encryption_password }}
- password2 = {{ b2_backups_config_encryption_salt }}
- {% endif %}
- {% if backups == 'all' or 'nasdata' in backups %}
- [b2-data]
- type = crypt
- remote = b2-unencrypted:{{ b2_data_bucket }}
- filename_encryption = standard
- directory_name_encryption = true
- password = {{ b2_data_config_encryption_password }}
- password2 = {{ b2_data_config_encryption_salt }}
- [b2-music]
- type = crypt
- remote = b2-unencrypted:{{ b2_music_bucket }}
- filename_encryption = standard
- directory_name_encryption = true
- password = {{ b2_music_config_encryption_password }}
- password2 = {{ b2_music_config_encryption_salt }}
- [b2-photos]
- type = crypt
- remote = b2-unencrypted:{{ b2_photos_bucket }}
- filename_encryption = standard
- directory_name_encryption = true
- password = {{ b2_photos_config_encryption_password }}
- password2 = {{ b2_photos_config_encryption_salt }}
- {% endif %}
- {% if backups == 'all' or 'containers' in backups %}
- [b2-container-data]
- type=crypt
- remote = b2-unencrypted:{{ b2_container_data_bucket }}
- filename_encryption = standard
- directory_name_encryption = true
- password = {{ b2_container_data_encryption_password }}
- password2 = {{ b2_container_data_encryption_salt }}
- {% endif %}
|