diff --git a/provider/cmd/pulumi-resource-kafka/schema.json b/provider/cmd/pulumi-resource-kafka/schema.json index 0ffb018..a5e2c98 100644 --- a/provider/cmd/pulumi-resource-kafka/schema.json +++ b/provider/cmd/pulumi-resource-kafka/schema.json @@ -37,9 +37,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/Mongey/terraform-provider-kafka)\n\u003e distributed under [MIT](https://mit-license.org/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-kafka` repo](https://github.com/pulumi/pulumi-kafka/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-kafka` repo](https://github.com/Mongey/terraform-provider-kafka/issues).", "compatibility": "tfbridge20", "respectSchemaVersion": true, diff --git a/provider/resources.go b/provider/resources.go index c58113e..342f4c9 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -108,9 +108,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