Skip to content

Commit 9b621e6

Browse files
Codelaxremyleone
andauthored
chore: bump sdk-go (#2635)
Co-authored-by: Rémy Léone <[email protected]>
1 parent 61cb657 commit 9b621e6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
github.com/nats-io/jwt/v2 v2.5.7
2424
github.com/nats-io/nats.go v1.36.0
2525
github.com/robfig/cron/v3 v3.0.1
26-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.27.0.20240603133732-526ae94f1caa
26+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.28.0.20240627072537-5f842364d6c9
2727
github.com/stretchr/testify v1.9.0
2828
golang.org/x/crypto v0.24.0
2929
gopkg.in/dnaeon/go-vcr.v3 v3.2.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ github.com/posener/complete v1.2.3 h1:NP0eAhjcjImqslEwo/1hq7gpajME0fTLTezBKDqfXq
242242
github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s=
243243
github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs=
244244
github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro=
245-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.27.0.20240603133732-526ae94f1caa h1:i+rtstvLVsx9zBDmVir/PssINIURdrXaCRpBW5+ctCs=
246-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.27.0.20240603133732-526ae94f1caa/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
245+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.28.0.20240627072537-5f842364d6c9 h1:Gt4xayTKi0W7t5tC+O+/L8lm99rCMjyM0orOwE3fKNw=
246+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.28.0.20240627072537-5f842364d6c9/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
247247
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8=
248248
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4=
249249
github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ=

internal/services/instance/private_nic.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func ResourceInstancePrivateNICCreate(ctx context.Context, d *schema.ResourceDat
9090
ServerID: zonal.ExpandID(d.Get("server_id").(string)).ID,
9191
PrivateNetworkID: regional.ExpandID(d.Get("private_network_id").(string)).ID,
9292
Tags: types.ExpandStrings(d.Get("tags")),
93-
IPIDs: types.ExpandStrings(d.Get("ip_ids")),
93+
IPIDs: types.ExpandStringsPtr(d.Get("ip_ids")),
9494
}
9595

9696
privateNIC, err := instanceAPI.CreatePrivateNIC(

0 commit comments

Comments
 (0)