vcenter deployment: remote psc spec

The remote_psc_spec structure contains information used to configure an external vCenter Server that registers with a remote PSC. This structure was added in vSphere API 6.7

Representation:

{
    "https_port"1,
    "psc_hostname""string",
    "ssl_thumbprint""string",
    "ssl_verify"true,
    "sso_admin_password""string"
}

Attributes:

Name Type Description
Required
psc_hostname string The IP address or DNS resolvable name of the remote PSC to which this configuring vCenter Server will be registered to. This attribute was added in vSphere API 6.7

sso_admin_password string The SSO administrator account password. This attribute was added in vSphere API 6.7

Optional
https_port long The HTTPS port of the external PSC appliance. This attribute was added in vSphere API 6.7

Optional. If unset, port 443 will be used.

ssl_thumbprint string SHA1 thumbprint of the server SSL certificate will be used for verification when ssl_verify field is set to true. This attribute was added in vSphere API 6.7

Optional. This field is only relevant if ssl_verify is unset or has the value true.

ssl_verify boolean SSL verification should be enabled or disabled. If ssl_verify is true and and ssl_thumbprint is unset, the CA certificate will be used for verification. If ssl_verify is true and ssl_thumbprint is set then the thumbprint will be used for verification. No verification will be performed if ssl_verify value is set to false. This attribute was added in vSphere API 6.7

Optional. If unset, ssl_verify true will be used.