You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-13 01:00:23 +02:00
Azure support for repository storage.
Azure and Azure-compatible object stores can now be used for repository storage. Currently only shared key authentication is supported but SAS will be added soon.
This commit is contained in:
@ -44,11 +44,11 @@ sub run
|
||||
foreach my $rhRun
|
||||
(
|
||||
{vm => VM1, remote => false, storage => POSIX, encrypt => false, compress => LZ4, error => 0},
|
||||
{vm => VM1, remote => true, storage => S3, encrypt => true, compress => GZ, error => 1},
|
||||
{vm => VM1, remote => true, storage => AZURE, encrypt => true, compress => GZ, error => 1},
|
||||
{vm => VM2, remote => false, storage => S3, encrypt => false, compress => NONE, error => 0},
|
||||
{vm => VM2, remote => true, storage => POSIX, encrypt => true, compress => BZ2, error => 0},
|
||||
{vm => VM3, remote => false, storage => POSIX, encrypt => true, compress => NONE, error => 0},
|
||||
{vm => VM3, remote => true, storage => S3, encrypt => false, compress => LZ4, error => 1},
|
||||
{vm => VM3, remote => true, storage => AZURE, encrypt => false, compress => LZ4, error => 1},
|
||||
{vm => VM4, remote => false, storage => S3, encrypt => true, compress => ZST, error => 0},
|
||||
{vm => VM4, remote => true, storage => POSIX, encrypt => false, compress => NONE, error => 0},
|
||||
)
|
||||
|
Reference in New Issue
Block a user