From 52d433e4190bc3d8c3c08bc3ac42e759238793b2 Mon Sep 17 00:00:00 2001 From: Ian Wahbe Date: Tue, 17 Dec 2024 16:49:40 +0100 Subject: [PATCH] Set `.DisplayName` in `tfbridge.ProviderInfo` This PR is part of pulumi/registry#4672. The display name used was taken from `github.com/pulumi/registry/tools/resourcedocsgen/pkg/lookup.go`. --- provider/cmd/pulumi-resource-dnsimple/schema.json | 1 + provider/resources.go | 1 + 2 files changed, 2 insertions(+) diff --git a/provider/cmd/pulumi-resource-dnsimple/schema.json b/provider/cmd/pulumi-resource-dnsimple/schema.json index 5307fbd..1f9658b 100644 --- a/provider/cmd/pulumi-resource-dnsimple/schema.json +++ b/provider/cmd/pulumi-resource-dnsimple/schema.json @@ -1,5 +1,6 @@ { "name": "dnsimple", + "displayName": "DNSimple", "description": "A Pulumi package for creating and managing dnsimple cloud resources.", "keywords": [ "pulumi", diff --git a/provider/resources.go b/provider/resources.go index f26810a..2a9b961 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -51,6 +51,7 @@ func Provider() tfbridge.ProviderInfo { prov := tfbridge.ProviderInfo{ P: pfbridge.ShimProvider(dnsimple.Provider(version.Version)), Name: "dnsimple", + DisplayName: "DNSimple", Description: "A Pulumi package for creating and managing dnsimple cloud resources.", Keywords: []string{"pulumi", "dnsimple"}, License: "Apache-2.0",