I'm trying to add the s3 bucket repo from backup for aws as an external repository in veeam B&R.
But i keep getting the error region not found , also with powershell:
Code: Select all
PS C:\Users\Administrator> $account = Get-VBRAmazonAccount -AccessKey "xxxxxxxxx"
PS C:\Users\Administrator> $connection = Connect-VBRAmazonS3Service -Account $account -RegionType Global -ServiceType ExternalRepository
PS C:\Users\Administrator> Get-VBRAmazonS3Region -Connection $connection -RegionId "eu-west-1"
>> TerminatingError(Get-VBRAmazonS3Region): "An Amazon S3 region with the specified ID does not exist: eu-west-1"
Get-VBRAmazonS3Region : An Amazon S3 region with the specified ID does not exist: eu-west-1
At line:1 char:1
+ Get-VBRAmazonS3Region -Connection $connection -RegionId "eu-west-1"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Get-VBRAmazonS3Region], Exception
+ FullyQualifiedErrorId : System.Exception,Veeam.Backup.PowerShell.Cmdlets.GetVBRAmazonS3Region
Get-VBRAmazonS3Region : An Amazon S3 region with the specified ID does not exist: eu-west-1
At line:1 char:1
+ Get-VBRAmazonS3Region -Connection $connection -RegionId "eu-west-1"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Get-VBRAmazonS3Region], Exception
+ FullyQualifiedErrorId : System.Exception,Veeam.Backup.PowerShell.Cmdlets.GetVBRAmazonS3Region
aws s3 ls and also with s3api
Code: Select all
aws s3api get-bucket-location --bucket vcbbucket
{
"LocationConstraint": "eu-west-1"
}
and we have a direct connect connection between our backup server on premise and aws , would it be possible to connect to the s3 bucket and veeam 4 aws appliance , without internet using endpoints only ?