This commit is contained in:
Dhwani Shah 2023-11-01 09:10:52 -07:00
Родитель 94f955887a
Коммит 725da7c713
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -312,7 +312,9 @@ func getWssdTags(tags map[string]*string) *wssdcloudproto.Tags {
}
func (c *client) virtualMachineValidations(opType wssdcloudproto.Operation, vmss *compute.VirtualMachine) error {
if vmss == nil || vmss.OsProfile == nil {
return nil
}
if vmss.OsProfile.ProxyConfiguration != nil && opType == wssdcloudproto.Operation_POST {
if vmss.OsProfile.ProxyConfiguration.HttpProxy != nil {
_, err := validations.ValidateProxyURL(*vmss.OsProfile.ProxyConfiguration.HttpProxy)