This is an archive version of the document. To get the most up-to-date information, see the current version.

Add-VBRCloudProviderCredentials

Short Description

Adds cloud provider credentials records to Veeam Backup & Replication.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Add-VBRCloudProviderCredentials -Name <string> -Password <string> [-Description <string>]  [<CommonParameters>]

Detailed Description

This cmdlet adds cloud provider credentials records to Veeam Backup & Replication

Add-VBRCloudProviderCredentials Note:

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Name

Specifies the login for cloud provider credentials records.

True

Named

False

 

Password

Specifies the password for cloud provider credentials records.

False

Named

False

 

Description

Specifies the description for cloud provider credentials records.

False

Named

False

 

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Return Type

Example 1

This command adds cloud provider credentials records to the Veeam Backup & Replication infrastructure.

Add-VBRCloudProviderCredentials -Name "Cloud Login" -Password "Cloud password"

Example 2

This example shows how to add cloud provider credentials records with the secure string option to the Veeam Backup & Replication infrastructure.

  1. Run Read-Host with the Prompt and AsSecureString parameters. Save the result to the $securepassword variable.
  2. Run Add-VBRCloudProviderCredentials with the $securepassword variable.

$securepassword = Read-Host -Prompt "Enter password" -AsSecureString

Add-VBRCloudProviderCredentials -Name "Cloud Login" -Password $securepassword