Fixing a bug in VM Extension if the RG didn't exist (#11894)

This commit is contained in:
Tom Harvey 2017-02-12 19:54:28 +00:00 committed by Paul Stack
parent e39f4e1993
commit 705e3541d0
1 changed files with 5 additions and 4 deletions

View File

@ -153,13 +153,14 @@ func resourceArmVirtualMachineExtensionsRead(d *schema.ResourceData, meta interf
name := id.Path["extensions"]
resp, err := client.Get(resGroup, vmName, name, "")
if err != nil {
if resp.StatusCode == http.StatusNotFound {
d.SetId("")
return nil
}
return fmt.Errorf("Error making Read request on Virtual Machine Extension %s: %s", name, err)
}
if resp.StatusCode == http.StatusNotFound {
d.SetId("")
return nil
}
d.Set("name", resp.Name)
d.Set("location", azureRMNormalizeLocation(*resp.Location))