Package version:

Cluster pool networking configuration.

interface ClusterPoolNetworkProfile {
    apiServerAuthorizedIpRanges?: string[];
    enablePrivateApiServer?: boolean;
    outboundType?: string;
    subnetId: string;
}

Hierarchy (view full)

Properties

apiServerAuthorizedIpRanges?: string[]

IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.

enablePrivateApiServer?: boolean

ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.

outboundType?: string

This can only be set at cluster pool creation time and cannot be changed later.

subnetId: string

Cluster pool subnet resource id.