Add-AttestationServiceInfo
This cmdlet adds an attestation service information, which comes from the TrustAuthorityAttestationService that runs in the Trust Authority system or its detailed information in the workload vCenter Server system.
Syntax
Parameters
Required | Parameter Name | Type | Position | Features | Description |
---|---|---|---|---|---|
required
|
AttestationService | TrustAuthorityAttestationService[] | named |
|
Specifies the Trust Authority attestation services that you want to retrieve from the Trust Authority system. |
optional | ProgressAction | ActionPreference | named |
|
|
optional | Server | VIServer[] | named |
|
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
VMware.VimAutomation.Security.Types.V1.TrustedInfrastructure.AttestationServiceInfoExamples
Example 1
$attestService = Get-TrustAuthorityAttestationService -Server trustAuthoritySystem
Add-AttestationServiceInfo -AttesattionService $attestService -Server workloadSystem
Adds the attestation service information to the workload vCenter Server system by specifying the TrustAuthorityAttesationService objects retrieved from the Trust Authority system.
Example 2
$attestService = Get-TrustAuthorityAttestationService -Server trustAuthoritySystem | select -First 1
Add-AttestationServiceInfo -ServiceAddress $attestService.ServiceAddress -ServiceGroup $attestService.ServiceGroup -TAClusterId $attestService.TrustAuthorityClusterId -TrustedCA $attestService.TrustedCA -ServicePort $attestService.ServicePort -Server workloadSystem
Adds the attestation service information to the workload vCenter Server system by specifying detailed information of the TrustAuthorityAttesationService running in the Trust Authority system.
Related Commands
AttestationServiceInfo
This cmdlet adds an attestation service information, which comes from the TrustAuthorityAttestationService that runs in the Trust Authority system or its detailed information in the workload vCenter Server system.
This cmdlet retrieves the attestation services information configured in the workload vCenter Server system.
This cmdlet removes the specified attestation services information from the workload vCenter Server system.