With PowerCLI, you can add hosts to a Software-Defined Data Center (SDDC) in your VMware Cloud on AWS organization.

Add hosts to an SDDC with PowerCLI. You can use the Cluster parameter to indicate in which cluster you want to add the hosts. If you do not specify a cluster, the hosts are added to the default cluster of the SDDC.

Prerequisites

Verify that you are connected to VMware Cloud on AWS.

Procedure

  1. Create a variable with the SDDCs in which you want to add hosts.
    $sddc = Get-VmcSddc 'Your SDDC'
  2. Add the hosts to the default cluster of the specified SDDCs.
    Add-VmcSddcHost -Sddc $sddc -HostCount 2