diff --git a/provider/cmd/pulumi-resource-vault/schema.json b/provider/cmd/pulumi-resource-vault/schema.json index f8740910..f4cc9b14 100644 --- a/provider/cmd/pulumi-resource-vault/schema.json +++ b/provider/cmd/pulumi-resource-vault/schema.json @@ -63,9 +63,6 @@ "nodejs": { "packageDescription": "A Pulumi package for creating and managing HashiCorp Vault cloud resources.", "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/hashicorp/terraform-provider-vault)\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-vault` repo](https://github.com/pulumi/pulumi-vault/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-vault` repo](https://github.com/hashicorp/terraform-provider-vault/issues).", - "dependencies": { - "@pulumi/pulumi": "^3.0.0" - }, "devDependencies": { "@types/mime": "^2.0.0", "@types/node": "^10.0.0" @@ -75,9 +72,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-vault)\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-vault` repo](https://github.com/pulumi/pulumi-vault/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-vault` repo](https://github.com/hashicorp/terraform-provider-vault/issues).", "compatibility": "tfbridge20", "respectSchemaVersion": true, diff --git a/provider/resources.go b/provider/resources.go index a1591ca5..f772a9cc 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -502,9 +502,6 @@ func Provider() tfbridge.ProviderInfo { }, }, JavaScript: &tfbridge.JavaScriptInfo{ - Dependencies: map[string]string{ - "@pulumi/pulumi": "^3.0.0", - }, DevDependencies: map[string]string{ "@types/node": "^10.0.0", // so we can access strongly typed node definitions. "@types/mime": "^2.0.0", @@ -514,9 +511,6 @@ func Provider() tfbridge.ProviderInfo { Python: (func() *tfbridge.PythonInfo { i := &tfbridge.PythonInfo{ RespectSchemaVersion: true, - Requires: map[string]string{ - "pulumi": ">=3.0.0,<4.0.0", - }, } i.PyProject.Enabled = true return i diff --git a/sdk/nodejs/package.json b/sdk/nodejs/package.json index 997979fc..7996a16d 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" }, "devDependencies": { "@types/mime": "^2.0.0",