Skip to content

Commit

Permalink
fix(vpc): fix typo on pool_high setting (#1301)
Browse files Browse the repository at this point in the history
  • Loading branch information
remyleone committed May 30, 2022
1 parent cb300f2 commit 534d1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scaleway/resource_vpc_public_gateway_dhcp.go
Expand Up @@ -229,7 +229,7 @@ func resourceScalewayVPCPublicGatewayDHCPRead(ctx context.Context, d *schema.Res
_ = d.Set("dns_local_name", dhcp.DNSLocalName)
_ = d.Set("enable_dynamic", dhcp.EnableDynamic)
_ = d.Set("organization_id", dhcp.OrganizationID)
_ = d.Set("pool_high", dhcp.PoolLow.String())
_ = d.Set("pool_high", dhcp.PoolHigh.String())
_ = d.Set("pool_low", dhcp.PoolLow.String())
_ = d.Set("project_id", dhcp.ProjectID)
_ = d.Set("push_default_route", dhcp.PushDefaultRoute)
Expand Down

0 comments on commit 534d1d2

Please sign in to comment.