Start-VsanEncryptionConfiguration Command | Vmware PowerCLI Reference

Start-VsanEncryptionConfiguration

This cmdlet starts an encryption configuration on a vSAN cluster.The encryption configuration includes the following actions: - Activate or deactivate the encryption- Change the key provider- Perform a deep rekey- Perform a shallow rekey

Syntax

Start-VsanEncryptionConfiguration
-Cluster < Cluster[] >
[-AllowReducedRedundancy < Boolean > ]
[-DeepRekey ]
[-ProgressAction < ActionPreference > ]
[-Server < VIServer[] > ]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
Cluster Cluster[] named
  • pipeline
  • wildcards
Specifies the vSAN cluster on which you want to start the encryption configuration of the vSAN objects.
optional AllowReducedRedundancy Boolean named
This optional parameter is applicable to specific vSAN cluster reconfigure operations that need to migrate data for changing the vSAN disk format across the cluster. When specified, the process might move less data to ensure storage object accessibility, and some objects might be kept at "reduced redundancy" state, which means at a higher risk in case of a hardware failure during the migration process. The default value is $false.
optional DeepRekey SwitchParameter named
Specifies that you want to perform a deep rekey operation. When a deep rekey operation runs, all disks are re-encrypted with new data encryption keys. The deep rekey operation takes long time to finish.
optional ProgressAction ActionPreference named
optional Server VIServer[] named
  • wildcards
Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is provided or $null value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of the Connect-VIServer cmdlet.

Output

Examples

Example 1

Start-VsanEncryptionConfiguration -Cluster $vsanCluster -EncryptionEnabled $true -KeyProvider 'ThalesCluster'

Enables the encryption on the $vsanCluster vSAN cluster with 'ThalesCluster' as the key provider.

Example 2

Start-VsanEncryptionConfiguration -Cluster $vsanCluster -EncryptionEnabled $false

Deactivates the encryption on the $vsanCluster vSAN cluster.

Example 3

Start-VsanEncryptionConfiguration -Cluster $vsanCluster -DeepRekey

Performs a deep rekey operation on all disks of the $vsanCluster vSAN cluster. All data on the disks is re-encrypted.

Example 4

Start-VsanEncryptionConfiguration -Cluster $vsanCluster -ShallowRekey

Performs a shallow rekey operation on all disks of the $vsanCluster vSAN cluster. All data encryption keys are rewrapped with a new key encryption key. Data on the disks is not re-encrypted.

Related Commands

VsanEncryptionConfiguration

This cmdlet starts an encryption configuration on a vSAN cluster.