Skip to content

Commit

Permalink
Set the .DisplayName pulumi/registry#4672
Browse files Browse the repository at this point in the history
  • Loading branch information
iwahbe committed Dec 17, 2024
1 parent be6af5e commit 865ecaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions provider/cmd/pulumi-resource-cloudamqp/schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "cloudamqp",
"displayName": "CloudAMQP",
"description": "A Pulumi package for creating and managing CloudAMQP resources.",
"keywords": [
"pulumi",
Expand Down
4 changes: 2 additions & 2 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ func makeResource(res string) tokens.Type { return tfbridge.MakeResource(mainPkg
func ref[T any](t T) *T { return &t }

func Provider() tfbridge.ProviderInfo {
p := shimv2.NewProvider(cloudamqp.Provider("", http.DefaultClient))
prov := tfbridge.ProviderInfo{
P: p,
P: shimv2.NewProvider(cloudamqp.Provider("", http.DefaultClient)),
Name: "cloudamqp",
DisplayName: "CloudAMQP",
GitHubOrg: "cloudamqp",
Description: "A Pulumi package for creating and managing CloudAMQP resources.",
Keywords: []string{"pulumi", "cloudamqp"},
Expand Down

0 comments on commit 865ecaa

Please sign in to comment.