Skip to content

Commit f775393

Browse files
authored
fix(instance): handle unauthorized on placement group and ip (#702)
1 parent a162f0d commit f775393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scaleway/resource_instance_ip.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func resourceScalewayInstanceIPDelete(ctx context.Context, d *schema.ResourceDat
108108
Zone: zone,
109109
}, scw.WithContext(ctx))
110110

111-
if err != nil && !is404Error(err) {
111+
if err != nil && !is404Error(err) && !is403Error(err) {
112112
return diag.FromErr(err)
113113
}
114114

0 commit comments

Comments
 (0)