diff --git a/provider/cmd/pulumi-resource-kong/schema.json b/provider/cmd/pulumi-resource-kong/schema.json index fe838917..2a0fe47b 100644 --- a/provider/cmd/pulumi-resource-kong/schema.json +++ b/provider/cmd/pulumi-resource-kong/schema.json @@ -32,9 +32,6 @@ "nodejs": { "packageDescription": "A Pulumi package for creating and managing Kong resources.", "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/kevholditch/terraform-provider-kong)\n\u003e distributed under [MIT](https://mit-license.org/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-kong` repo](https://github.com/pulumi/pulumi-kong/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-kong` repo](https://github.com/kevholditch/terraform-provider-kong/issues).", - "dependencies": { - "@pulumi/pulumi": "^3.0.0" - }, "devDependencies": { "@types/mime": "^2.0.0", "@types/node": "^10.0.0" @@ -44,9 +41,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/kevholditch/terraform-provider-kong)\n\u003e distributed under [MIT](https://mit-license.org/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-kong` repo](https://github.com/pulumi/pulumi-kong/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-kong` repo](https://github.com/kevholditch/terraform-provider-kong/issues).", "compatibility": "tfbridge20", "respectSchemaVersion": true, diff --git a/provider/resources.go b/provider/resources.go index 52a802b2..b7cd9b00 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -85,9 +85,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", "@types/mime": "^2.0.0", @@ -96,9 +93,7 @@ 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}, }, diff --git a/sdk/nodejs/package.json b/sdk/nodejs/package.json index 75164e8f..43776d1f 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",