vcenter deployment install: install spec

The install_spec structure contains information used to configure the appliance installation. This structure was added in vSphere API 6.7

Representation:

{
    "auto_answer"true,
    "psc"{
        "ceip_enabled"true,
        "replicated"{
            "https_port"1,
            "partner_hostname""string",
            "ssl_thumbprint""string",
            "ssl_verify"true,
            "sso_admin_password""string",
            "sso_site_name""string"
        },
        "standalone"{
            "sso_admin_password""string",
            "sso_domain_name""string",
            "sso_site_name""string"
        }
    },
    "vcsa_embedded"{
        "ceip_enabled"true,
        "replicated"{
            "https_port"1,
            "partner_hostname""string",
            "ssl_thumbprint""string",
            "ssl_verify"true,
            "sso_admin_password""string"
        },
        "standalone"{
            "sso_admin_password""string",
            "sso_domain_name""string"
        }
    },
    "vcsa_external"{
        "https_port"1,
        "psc_hostname""string",
        "ssl_thumbprint""string",
        "ssl_verify"true,
        "sso_admin_password""string"
    }
}

Attributes:

Name Type Description
Optional
vcsa_embedded vcsa_embedded_spec Spec used to configure an embedded vCenter Server. This field describes how the embedded vCenter Server appliance should be configured. This attribute was added in vSphere API 6.7

Optional. If unset, will not configure this appliance as Embedded vCenter Server. If unset, either vcsa_external or psc must be provided.

psc psc_spec Spec used to configure a Platform Services Controller. This field describes how the Platform Services Controller appliance should be configured. This attribute was added in vSphere API 6.7

Optional. If unset, will not configure this appliance as Platform Services Controller. If unset, either vcsa_embedded or vcsa_external must be provided.

vcsa_external remote_psc_spec Spec used to configure a vCenter Server registered with an external PSC. This fields represent the remote external PSC that the configuring vCenter Server will be registering with. This attribute was added in vSphere API 6.7

Optional. If unset, will not configure this appliance as external vCenter Server. If unset, either vcsa_embedded or psc must be provided.

auto_answer boolean Use the default option for any questions that may come up during appliance configuration. This attribute was added in vSphere API 6.7

Optional. If unset, will default to false.