Package version:

The InfrastructureNetwork of a AzureStackHCI Cluster.

interface InfrastructureNetwork {
    dnsServerConfig?: string;
    dnsServers?: {};
    dnsZones?: {};
    gateway?: string;
    ipPools?: {};
    subnetMask?: string;
    useDhcp?: boolean;
}

Properties

dnsServerConfig?: string

Specifies how DNS servers are configured for the infrastructure network. Allowed values are 'UseDnsServer' to use the provided DNS servers, and 'UseForwarder' to use DNS forwarders.

dnsServers?: {}

IPv4 address of the DNS servers in your environment.

dnsZones?: {}

Details of the DNS Zones to be configured.

gateway?: string

Default gateway that should be used for the provided IP address space.

ipPools?: {}

Range of IP addresses from which addresses are allocated for nodes within a subnet.

subnetMask?: string

Subnet mask that matches the provided IP address space.

useDhcp?: boolean

Allows customers to use DHCP for Hosts and Cluster IPs. If not declared, the deployment will default to static IPs. When true, GW and DNS servers are not required