diff --git a/provider/cmd/pulumi-resource-gcp/schema.json b/provider/cmd/pulumi-resource-gcp/schema.json index 1f53a982a7..897bf9b0e6 100644 --- a/provider/cmd/pulumi-resource-gcp/schema.json +++ b/provider/cmd/pulumi-resource-gcp/schema.json @@ -154,7 +154,6 @@ "packageDescription": "A Pulumi package for creating and managing Google Cloud Platform resources.", "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/hashicorp/terraform-provider-google-beta)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-gcp` repo](https://github.com/pulumi/pulumi-gcp/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-google-beta` repo](https://github.com/hashicorp/terraform-provider-google-beta/issues).", "dependencies": { - "@pulumi/pulumi": "^3.0.0", "@types/express": "^4.16.0", "read-package-json": "^2.0.13" }, @@ -169,9 +168,6 @@ "respectSchemaVersion": true }, "python": { - "requires": { - "pulumi": "\u003e=3.0.0,\u003c4.0.0" - }, "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/hashicorp/terraform-provider-google-beta)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-gcp` repo](https://github.com/pulumi/pulumi-gcp/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-google-beta` repo](https://github.com/hashicorp/terraform-provider-google-beta/issues).", "compatibility": "tfbridge20", "respectSchemaVersion": true, diff --git a/provider/resources.go b/provider/resources.go index 2a32ed69dd..f7baf1d0a8 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -2676,7 +2676,6 @@ func Provider() tfbridge.ProviderInfo { }, JavaScript: &tfbridge.JavaScriptInfo{ Dependencies: map[string]string{ - "@pulumi/pulumi": "^3.0.0", "read-package-json": "^2.0.13", "@types/express": "^4.16.0", }, @@ -2728,18 +2727,15 @@ func Provider() tfbridge.ProviderInfo { }, Python: &tfbridge.PythonInfo{ RespectSchemaVersion: true, - Requires: map[string]string{ - "pulumi": ">=3.0.0,<4.0.0", - }, - PyProject: struct{ Enabled bool }{true}, - InputTypes: tfbridge.PythonInputTypeClassesAndDicts, + PyProject: struct{ Enabled bool }{true}, + InputTypes: tfbridge.PythonInputTypeClassesAndDicts, }, CSharp: &tfbridge.CSharpInfo{ - RespectSchemaVersion: true, PackageReferences: map[string]string{ "Pulumi": "3.*", }, - Namespaces: namespaceMap, + RespectSchemaVersion: true, + Namespaces: namespaceMap, }, EnableZeroDefaultSchemaVersion: true, } diff --git a/sdk/nodejs/package.json b/sdk/nodejs/package.json index 9a9dbddef5..102a54519c 100644 --- a/sdk/nodejs/package.json +++ b/sdk/nodejs/package.json @@ -13,7 +13,7 @@ "build": "tsc" }, "dependencies": { - "@pulumi/pulumi": "^3.0.0", + "@pulumi/pulumi": "^3.42.0", "@types/express": "^4.16.0", "read-package-json": "^2.0.13" },