Skip to content

Commit 25fd46d

Browse files
authored
Upgrade terraform-provider-ovh to v1.0.0 (#253)
* make tfgen * make build_sdks
1 parent ab037f1 commit 25fd46d

File tree

443 files changed

+21417
-1723
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

443 files changed

+21417
-1723
lines changed

provider/cmd/pulumi-resource-ovh/bridge-metadata.json

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"ovh:CloudProject/kubeOidc:KubeOidc": 0,
1818
"ovh:CloudProject/networkPrivate:NetworkPrivate": 0,
1919
"ovh:CloudProject/networkPrivateSubnet:NetworkPrivateSubnet": 0,
20+
"ovh:CloudProject/networkPrivateSubnetV2:NetworkPrivateSubnetV2": 0,
2021
"ovh:CloudProject/project:Project": 0,
2122
"ovh:CloudProject/regionLoadBalancerLogSubscription:RegionLoadBalancerLogSubscription": 0,
2223
"ovh:CloudProject/regionStoragePresign:RegionStoragePresign": 0,
@@ -43,6 +44,8 @@
4344
"ovh:Dbaas/logsCluster:LogsCluster": 0,
4445
"ovh:Dbaas/logsInput:LogsInput": 0,
4546
"ovh:Dbaas/logsOutputGraylogStream:LogsOutputGraylogStream": 0,
47+
"ovh:Dbaas/logsOutputOpenSearchAlias:LogsOutputOpenSearchAlias": 0,
48+
"ovh:Dbaas/logsOutputOpenSearchIndex:LogsOutputOpenSearchIndex": 0,
4649
"ovh:Dbaas/logsToken:LogsToken": 1,
4750
"ovh:Dedicated/cephAcl:CephAcl": 0,
4851
"ovh:Dedicated/nasHAPartition:NasHAPartition": 0,
@@ -149,6 +152,8 @@
149152
"ovh:CloudProject/getUserS3Policy:getUserS3Policy": 0,
150153
"ovh:CloudProject/getUsers:getUsers": 0,
151154
"ovh:CloudProject/getVRack:getVRack": 0,
155+
"ovh:CloudProject/getVolume:getVolume": 1,
156+
"ovh:CloudProject/getVolumes:getVolumes": 1,
152157
"ovh:CloudProjectDatabase/getCapabilities:getCapabilities": 0,
153158
"ovh:CloudProjectDatabase/getCertificates:getCertificates": 0,
154159
"ovh:CloudProjectDatabase/getDatabase:getDatabase": 0,
@@ -177,6 +182,7 @@
177182
"ovh:Dbaas/getLogsClustersRetention:getLogsClustersRetention": 1,
178183
"ovh:Dbaas/getLogsInputEngine:getLogsInputEngine": 0,
179184
"ovh:Dbaas/getLogsOutputGraylogStream:getLogsOutputGraylogStream": 0,
185+
"ovh:Dbaas/getLogsOutputOpenSearchIndex:getLogsOutputOpenSearchIndex": 0,
180186
"ovh:Dedicated/getCeph:getCeph": 0,
181187
"ovh:Dedicated/getNasHA:getNasHA": 0,
182188
"ovh:Dedicated/getServerBoots:getServerBoots": 0,

provider/cmd/pulumi-resource-ovh/schema.json

+910-147
Large diffs are not rendered by default.

provider/go.mod

+16-17
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ toolchain go1.22.7
77
replace github.com/hashicorp/terraform-plugin-sdk/v2 => github.com/pulumi/terraform-plugin-sdk/v2 v2.0.0-20240520223432-0c0bf0d65f10
88

99
require (
10-
github.com/ovh/terraform-provider-ovh v0.50.0
11-
github.com/pulumi/pulumi-terraform-bridge/pf v0.44.1
12-
github.com/pulumi/pulumi-terraform-bridge/v3 v3.91.1
13-
github.com/pulumi/pulumi/sdk/v3 v3.134.1
10+
github.com/ovh/terraform-provider-ovh v1.0.0
11+
github.com/pulumi/pulumi-terraform-bridge/pf v0.46.0
12+
github.com/pulumi/pulumi-terraform-bridge/v3 v3.93.1
13+
github.com/pulumi/pulumi/sdk/v3 v3.136.1
1414
)
1515

1616
require (
1717
cloud.google.com/go v0.112.1 // indirect
18-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
18+
cloud.google.com/go/compute/metadata v0.5.0 // indirect
1919
cloud.google.com/go/iam v1.1.6 // indirect
2020
cloud.google.com/go/kms v1.15.7 // indirect
2121
cloud.google.com/go/logging v1.9.0 // indirect
@@ -105,7 +105,7 @@ require (
105105
github.com/hashicorp/go-getter v1.7.5 // indirect
106106
github.com/hashicorp/go-hclog v1.6.3 // indirect
107107
github.com/hashicorp/go-multierror v1.1.1 // indirect
108-
github.com/hashicorp/go-plugin v1.6.1 // indirect
108+
github.com/hashicorp/go-plugin v1.6.2 // indirect
109109
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
110110
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
111111
github.com/hashicorp/go-safetemp v1.0.0 // indirect
@@ -123,9 +123,9 @@ require (
123123
github.com/hashicorp/terraform-json v0.22.1 // indirect
124124
github.com/hashicorp/terraform-plugin-framework v1.12.0 // indirect
125125
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0 // indirect
126-
github.com/hashicorp/terraform-plugin-go v0.24.0 // indirect
126+
github.com/hashicorp/terraform-plugin-go v0.25.0 // indirect
127127
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
128-
github.com/hashicorp/terraform-plugin-mux v0.16.0 // indirect
128+
github.com/hashicorp/terraform-plugin-mux v0.17.0 // indirect
129129
github.com/hashicorp/terraform-plugin-sdk v1.8.0 // indirect
130130
github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 // indirect
131131
github.com/hashicorp/terraform-plugin-testing v1.10.0 // indirect
@@ -180,9 +180,8 @@ require (
180180
github.com/pulumi/esc v0.10.0 // indirect
181181
github.com/pulumi/inflector v0.1.1 // indirect
182182
github.com/pulumi/pulumi-java/pkg v0.16.1 // indirect
183-
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.8 // indirect
184-
github.com/pulumi/pulumi-yaml v1.10.0 // indirect
185-
github.com/pulumi/pulumi/pkg/v3 v3.133.0 // indirect
183+
github.com/pulumi/pulumi-yaml v1.10.3 // indirect
184+
github.com/pulumi/pulumi/pkg/v3 v3.136.1 // indirect
186185
github.com/pulumi/schema-tools v0.1.2 // indirect
187186
github.com/pulumi/terraform-diff-reader v0.0.2 // indirect
188187
github.com/rivo/uniseg v0.4.4 // indirect
@@ -228,8 +227,8 @@ require (
228227
golang.org/x/crypto v0.26.0 // indirect
229228
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect
230229
golang.org/x/mod v0.19.0 // indirect
231-
golang.org/x/net v0.27.0 // indirect
232-
golang.org/x/oauth2 v0.21.0 // indirect
230+
golang.org/x/net v0.28.0 // indirect
231+
golang.org/x/oauth2 v0.22.0 // indirect
233232
golang.org/x/sync v0.8.0 // indirect
234233
golang.org/x/sys v0.25.0 // indirect
235234
golang.org/x/term v0.23.0 // indirect
@@ -240,10 +239,10 @@ require (
240239
google.golang.org/api v0.169.0 // indirect
241240
google.golang.org/appengine v1.6.8 // indirect
242241
google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7 // indirect
243-
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 // indirect
244-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 // indirect
245-
google.golang.org/grpc v1.66.2 // indirect
246-
google.golang.org/protobuf v1.34.2 // indirect
242+
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
243+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
244+
google.golang.org/grpc v1.67.1 // indirect
245+
google.golang.org/protobuf v1.35.1 // indirect
247246
gopkg.in/ini.v1 v1.67.0 // indirect
248247
gopkg.in/warnings.v0 v0.1.2 // indirect
249248
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)