fix an param typo of AKS loadbalancer method

pull/564/head
Wei Huang 2018-11-30 12:18:45 -08:00
parent 51453a3131
commit f3dc0bc307
No known key found for this signature in database
GPG Key ID: BE5E9752F8B6E005
1 changed files with 2 additions and 2 deletions

View File

@ -84,13 +84,13 @@ func (az *Cloud) getAvailabilitySetID(resourceGroup, availabilitySetName string)
}
// returns the full identifier of a loadbalancer frontendipconfiguration.
func (az *Cloud) getFrontendIPConfigID(lbName, backendPoolName string) string {
func (az *Cloud) getFrontendIPConfigID(lbName, fipConfigName string) string {
return fmt.Sprintf(
frontendIPConfigIDTemplate,
az.SubscriptionID,
az.ResourceGroup,
lbName,
backendPoolName)
fipConfigName)
}
// returns the full identifier of a loadbalancer backendpool.