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

Prerequisites

Verify that you are connected to VMware Cloud on AWS.

Procedure

  1. Get a VMware Cloud on AWS account.
    $awsAccount = Get-AwsAccount
  2. Get the VMware Cloud on AWS Virtual Private Cloud (VPC) subnets.
    $awsVpcSubnets = Get-AwsVpcSubnet -AwsAccount $awsAccount -Region "US_EAST_1"
  3. Create an SDDC.
    New-VmcSddc -Name "MySDDC" -HostCount 3 -Region "US_EAST_1" -AwsAccount $awsAccount -AwsVpcSubnet $awsVpcSubnets[0]