diff --git a/apis/management.cattle.io/v3/cluster_types.go b/apis/management.cattle.io/v3/cluster_types.go index 12ddb720..fdc52f1e 100644 --- a/apis/management.cattle.io/v3/cluster_types.go +++ b/apis/management.cattle.io/v3/cluster_types.go @@ -196,6 +196,10 @@ type AzureKubernetesServiceConfig struct { TenantID string `json:"tenantId,omitempty" norman:"required"` // Secret associated with the Client ID ClientSecret string `json:"clientSecret,omitempty" norman:"required,type=password"` + // Virtual network to use for the AKS cluster + VirtualNetwork string `json:"virtualNetwork,omitempty"` + // Subnet to use for the AKS Cluster (must be within the virtual network) + Subnet string `json:"subnet,omitempty"` } type AmazonElasticContainerServiceConfig struct {