provider/openstack: Account for a 403 reply from os-tenant-networks
This commit is contained in:
parent
834bfcdc7a
commit
65d96ef58a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue