Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add securityGroupResourceGroup cloud config value #668

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion site/content/en/install/configs.md
Expand Up @@ -22,8 +22,9 @@ Here is a config file sample:
"location": "eastus",
"subnetName": "<name>",
"securityGroupName": "<name>",
"securityGroupResourceGroup": "<name>",
"vnetName": "<name>",
"vnetResourceGroup": "",
"vnetResourceGroup": "<name>",
"routeTableName": "<name>",
"primaryAvailabilitySetName": "<name>",
"routeTableResourceGroup": "<name>",
Expand Down Expand Up @@ -72,6 +73,7 @@ If more than one value is set, the order is `Managed Identity` > `Service Princi
|vnetResourceGroup|The name of the resource group that the Vnet is deployed in||
|subnetName|The name of the subnet that the cluster is deployed in||
|securityGroupName|The name of the security group attached to the cluster's subnet||
|securityGroupResourceGroup|The name of the resource group that the security group is deployed in||
|routeTableName|The name of the route table attached to the subnet that the cluster is deployed in|Optional in 1.6|
|primaryAvailabilitySetName[*](#primaryavailabilitysetname)|The name of the availability set that should be used as the load balancer backend|Optional|
|vmType|The type of azure nodes. Candidate values are: `vmss` and `standard`|Optional, default to `standard`|
Expand Down