Revert "Even better error message."

This reverts commit ebd5dc5d3d.
This commit is contained in:
Jie Wang 2017-03-31 13:55:39 -07:00
parent ebd5dc5d3d
commit 65c4b9ca38
1 changed files with 6 additions and 1 deletions

View File

@ -102,7 +102,12 @@ func resourceArmLocalNetworkGatewayRead(d *schema.ResourceData, meta interface{}
}
name := id.Path["localNetworkGateways"]
if name == "" {
return fmt.Errorf("Cannot find 'localNetworkGateways' in '%s', make sure it is specified in the ID parameter", d.Id())
var pathString, sp string
for key, value := range id.Path {
pathString += fmt.Sprintf("%s'%s:%s'", sp, key, value)
sp = ", "
}
return fmt.Errorf("Cannot find 'localNetworkGateways' in [%s], make sure it is specified in the ID parameter", pathString)
}
resGroup := id.ResourceGroup