Skip to content

Commit 534d1d2

Browse files
authored
fix(vpc): fix typo on pool_high setting (#1301)
1 parent cb300f2 commit 534d1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scaleway/resource_vpc_public_gateway_dhcp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ func resourceScalewayVPCPublicGatewayDHCPRead(ctx context.Context, d *schema.Res
229229
_ = d.Set("dns_local_name", dhcp.DNSLocalName)
230230
_ = d.Set("enable_dynamic", dhcp.EnableDynamic)
231231
_ = d.Set("organization_id", dhcp.OrganizationID)
232-
_ = d.Set("pool_high", dhcp.PoolLow.String())
232+
_ = d.Set("pool_high", dhcp.PoolHigh.String())
233233
_ = d.Set("pool_low", dhcp.PoolLow.String())
234234
_ = d.Set("project_id", dhcp.ProjectID)
235235
_ = d.Set("push_default_route", dhcp.PushDefaultRoute)

0 commit comments

Comments
 (0)