Skip to content

Commit

Permalink
Upgrade terraform-provider-exoscale to v0.57.0 (#344)
Browse files Browse the repository at this point in the history
* make tfgen

* make build_sdks
  • Loading branch information
dirien committed Apr 19, 2024
1 parent a04ba49 commit 8defecf
Show file tree
Hide file tree
Showing 21 changed files with 336 additions and 68 deletions.
31 changes: 31 additions & 0 deletions provider/cmd/pulumi-resource-exoscale/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1526,6 +1526,10 @@
"type": "boolean",
"description": "Deploy the Exoscale [Cloud Controller Manager](https://github.com/exoscale/exoscale-cloud-controller-manager/) in the control plane (boolean; default: `true`; may only be set at creation time).\n"
},
"exoscaleCsi": {
"type": "boolean",
"description": "Deploy the Exoscale [Container Storage Interface](https://github.com/exoscale/exoscale-csi-driver/) on worker nodes (boolean; default: `false`; may only be set at creation time).\n"
},
"id": {
"type": "string"
},
Expand Down Expand Up @@ -4286,6 +4290,10 @@
"type": "boolean",
"description": "Deploy the Exoscale [Cloud Controller Manager](https://github.com/exoscale/exoscale-cloud-controller-manager/) in the control plane (boolean; default: `true`; may only be set at creation time).\n"
},
"exoscaleCsi": {
"type": "boolean",
"description": "Deploy the Exoscale [Container Storage Interface](https://github.com/exoscale/exoscale-csi-driver/) on worker nodes (boolean; default: `false`; may only be set at creation time).\n"
},
"kubeletCa": {
"type": "string",
"description": "The CA certificate (in PEM format) for TLS communications between kubelets and the control plane.\n"
Expand Down Expand Up @@ -4371,6 +4379,10 @@
"type": "boolean",
"description": "Deploy the Exoscale [Cloud Controller Manager](https://github.com/exoscale/exoscale-cloud-controller-manager/) in the control plane (boolean; default: `true`; may only be set at creation time).\n"
},
"exoscaleCsi": {
"type": "boolean",
"description": "Deploy the Exoscale [Container Storage Interface](https://github.com/exoscale/exoscale-csi-driver/) on worker nodes (boolean; default: `false`; may only be set at creation time).\n"
},
"labels": {
"type": "object",
"additionalProperties": {
Expand Down Expand Up @@ -4449,6 +4461,10 @@
"type": "boolean",
"description": "Deploy the Exoscale [Cloud Controller Manager](https://github.com/exoscale/exoscale-cloud-controller-manager/) in the control plane (boolean; default: `true`; may only be set at creation time).\n"
},
"exoscaleCsi": {
"type": "boolean",
"description": "Deploy the Exoscale [Container Storage Interface](https://github.com/exoscale/exoscale-csi-driver/) on worker nodes (boolean; default: `false`; may only be set at creation time).\n"
},
"kubeletCa": {
"type": "string",
"description": "The CA certificate (in PEM format) for TLS communications between kubelets and the control plane.\n"
Expand Down Expand Up @@ -6235,6 +6251,10 @@
"type": "boolean",
"description": "Deploy the Exoscale [Cloud Controller Manager](https://github.com/exoscale/exoscale-cloud-controller-manager/) in the control plane (boolean; default: `true`; may only be set at creation time).\n"
},
"exoscaleCsi": {
"type": "boolean",
"description": "Deploy the Exoscale [Container Storage Interface](https://github.com/exoscale/exoscale-csi-driver/) on worker nodes (boolean; default: `false`; may only be set at creation time).\n"
},
"id": {
"type": "string",
"description": "The ID of this resource.\n"
Expand Down Expand Up @@ -6331,6 +6351,10 @@
"type": "boolean",
"description": "Deploy the Exoscale [Cloud Controller Manager](https://github.com/exoscale/exoscale-cloud-controller-manager/) in the control plane (boolean; default: `true`; may only be set at creation time).\n"
},
"exoscaleCsi": {
"type": "boolean",
"description": "Deploy the Exoscale [Container Storage Interface](https://github.com/exoscale/exoscale-csi-driver/) on worker nodes (boolean; default: `false`; may only be set at creation time).\n"
},
"id": {
"type": "string",
"description": "The ID of this resource.\n"
Expand Down Expand Up @@ -6424,6 +6448,9 @@
"exoscaleCcm": {
"type": "boolean"
},
"exoscaleCsi": {
"type": "boolean"
},
"id": {
"type": "string"
},
Expand Down Expand Up @@ -6501,6 +6528,10 @@
"type": "boolean",
"description": "Match against this bool\n"
},
"exoscaleCsi": {
"type": "boolean",
"description": "Match against this bool\n"
},
"id": {
"type": "string",
"description": "Match against this string. If you supply a string that begins and ends with a \"/\" it will be matched as a regex.\n"
Expand Down
44 changes: 22 additions & 22 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ replace (

require (
github.com/exoscale/terraform-provider-exoscale/shim v0.0.0
github.com/pulumi/pulumi-terraform-bridge/pf v0.31.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.79.0
github.com/pulumi/pulumi-terraform-bridge/pf v0.33.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.80.0
github.com/pulumi/pulumi/sdk/v3 v3.112.0
)

require (
cloud.google.com/go v0.112.0 // indirect
cloud.google.com/go/compute v1.23.3 // indirect
cloud.google.com/go/compute v1.24.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.5 // indirect
cloud.google.com/go/kms v1.15.5 // indirect
cloud.google.com/go/iam v1.1.6 // indirect
cloud.google.com/go/kms v1.15.7 // indirect
cloud.google.com/go/logging v1.9.0 // indirect
cloud.google.com/go/longrunning v0.5.4 // indirect
cloud.google.com/go/longrunning v0.5.5 // indirect
cloud.google.com/go/storage v1.36.0 // indirect
dario.cat/mergo v1.0.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0 // indirect
Expand Down Expand Up @@ -91,7 +91,7 @@ require (
github.com/emirpasic/gods v1.18.1 // indirect
github.com/ettle/strcase v0.1.1 // indirect
github.com/exoscale/egoscale v0.102.3 // indirect
github.com/exoscale/terraform-provider-exoscale v0.56.0 // indirect
github.com/exoscale/terraform-provider-exoscale v0.57.0 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
Expand All @@ -103,7 +103,7 @@ require (
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-git/go-billy/v5 v5.5.0 // indirect
github.com/go-git/go-git/v5 v5.11.0 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
Expand All @@ -114,7 +114,7 @@ require (
github.com/golang-jwt/jwt/v5 v5.1.0 // indirect
github.com/golang/glog v1.2.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/gomarkdown/markdown v0.0.0-20231222211730-1d6d20845b47 // indirect
github.com/google/go-cmp v0.6.0 // indirect
Expand Down Expand Up @@ -150,10 +150,10 @@ require (
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-plugin-framework v1.7.0 // indirect
github.com/hashicorp/terraform-plugin-framework v1.8.0 // indirect
github.com/hashicorp/terraform-plugin-framework-timeouts v0.4.1 // indirect
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.22.1 // indirect
github.com/hashicorp/terraform-plugin-go v0.22.2 // indirect
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
github.com/hashicorp/terraform-plugin-mux v0.15.0 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0 // indirect
Expand Down Expand Up @@ -269,11 +269,11 @@ require (
github.com/yosssi/ace v0.0.5 // indirect
github.com/zclconf/go-cty v1.14.2 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
go.opentelemetry.io/otel v1.21.0 // indirect
go.opentelemetry.io/otel/metric v1.21.0 // indirect
go.opentelemetry.io/otel/trace v1.21.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
go.opentelemetry.io/otel v1.22.0 // indirect
go.opentelemetry.io/otel/metric v1.22.0 // indirect
go.opentelemetry.io/otel/trace v1.22.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
gocloud.dev v0.36.0 // indirect
gocloud.dev/secrets/hashivault v0.27.0 // indirect
Expand All @@ -282,20 +282,20 @@ require (
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/oauth2 v0.16.0 // indirect
golang.org/x/oauth2 v0.17.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.17.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/api v0.155.0 // indirect
google.golang.org/api v0.162.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/grpc v1.63.2 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
Expand Down

0 comments on commit 8defecf

Please sign in to comment.