Skip to content

Commit

Permalink
Do not depend on specific sdk (#2490)
Browse files Browse the repository at this point in the history
  • Loading branch information
t0yv0 authored Oct 1, 2024
1 parent b26ac8a commit 15af6e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
4 changes: 0 additions & 4 deletions provider/cmd/pulumi-resource-gcp/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand All @@ -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,
Expand Down
12 changes: 4 additions & 8 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
Expand Down Expand Up @@ -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,
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 15af6e5

Please sign in to comment.