1
0
mirror of https://github.com/rancher/types.git synced 2025-07-13 05:14:01 +00:00

Adding virtual network and subnet options to aks cluster config

This commit is contained in:
Nathan Jenan 2018-06-11 09:03:05 -07:00 committed by Craig Jellick
parent c9dc486e63
commit 0792c55473

View File

@ -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 {