provider/openstack: Account for a 403 reply from os-tenant-networks

This commit is contained in:
Joe Topjian 2016-03-02 21:17:59 +00:00
parent 834bfcdc7a
commit 65d96ef58a
1 changed files with 1 additions and 1 deletions

View File

@ -922,7 +922,7 @@ func getInstanceNetworks(computeClient *gophercloud.ServiceClient, d *schema.Res
return nil, err
}
if errCode.Actual == 404 {
if errCode.Actual == 404 || errCode.Actual == 403 {
tenantNetworkExt = false
} else {
return nil, err