Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/RedisLabs/terraform-provider-rediscloud
go 1.22.4

require (
github.com/RedisLabs/rediscloud-go-api v0.27.0
github.com/RedisLabs/rediscloud-go-api v0.29.0
github.com/bflad/tfproviderlint v0.31.0
github.com/hashicorp/go-cty v1.5.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
Expand Down Expand Up @@ -66,3 +66,6 @@ require (
google.golang.org/protobuf v1.36.3 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

// for local development, uncomment this
//replace github.com/RedisLabs/rediscloud-go-api => ../rediscloud-go-api
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migc
github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM=
github.com/ProtonMail/go-crypto v1.1.3 h1:nRBOetoydLeUb4nHajyO2bKqMLfWQ/ZPwkXqXxPxCFk=
github.com/ProtonMail/go-crypto v1.1.3/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
github.com/RedisLabs/rediscloud-go-api v0.27.0 h1:eTaxZFl+y6z+loViUl6CDhlG+JVDokXHbkIctRD+r2g=
github.com/RedisLabs/rediscloud-go-api v0.27.0/go.mod h1:3/oVb71rv2OstFRYEc65QCIbfwnJTgZeQhtPCcdHook=
github.com/RedisLabs/rediscloud-go-api v0.29.0 h1:XLVBMSgHwaaHFmf+TXrsU2veQ67J+e5Xrz54FggnwTY=
github.com/RedisLabs/rediscloud-go-api v0.29.0/go.mod h1:3/oVb71rv2OstFRYEc65QCIbfwnJTgZeQhtPCcdHook=
github.com/agext/levenshtein v1.2.2 h1:0S/Yg6LYmFJ5stwQeRp6EeOcCbj7xiqQSdNelsXvaqE=
github.com/agext/levenshtein v1.2.2/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
github.com/apparentlymart/go-textseg/v12 v12.0.0/go.mod h1:S/4uRK2UtaQttw1GenVJEynmyUenKwP++x/+DdGV/Ec=
Expand Down
1 change: 1 addition & 0 deletions provider/resource_rediscloud_essentials_database.go
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,7 @@ func waitForEssentialsDatabaseToBeActive(ctx context.Context, subId, id int, api
databases.StatusRCPChangePending,
databases.StatusProxyPolicyChangePending,
databases.StatusProxyPolicyChangeDraft,
databases.StatusDynamicEndpointsCreationPending,
},
Target: []string{databases.StatusActive},
Timeout: safetyTimeout,
Expand Down
1 change: 1 addition & 0 deletions provider/resource_rediscloud_pro_subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -1022,6 +1022,7 @@ func waitForDatabaseToBeActive(ctx context.Context, subId, id int, api *apiClien
databases.StatusRCPChangePending,
databases.StatusProxyPolicyChangePending,
databases.StatusProxyPolicyChangeDraft,
databases.StatusDynamicEndpointsCreationPending,
},
Target: []string{databases.StatusActive},
Timeout: safetyTimeout,
Expand Down