diff --git a/provider/cmd/pulumi-resource-consul/schema.json b/provider/cmd/pulumi-resource-consul/schema.json index 6932218..dcd070c 100644 --- a/provider/cmd/pulumi-resource-consul/schema.json +++ b/provider/cmd/pulumi-resource-consul/schema.json @@ -1,5 +1,6 @@ { "name": "consul", + "displayName": "Consul", "description": "A Pulumi package for creating and managing consul resources.", "keywords": [ "pulumi", diff --git a/provider/resources.go b/provider/resources.go index 901f01e..448df2a 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -45,6 +45,7 @@ func Provider() tfbridge.ProviderInfo { prov := tfbridge.ProviderInfo{ P: p, Name: "consul", + DisplayName: "Consul", Description: "A Pulumi package for creating and managing consul resources.", Keywords: []string{"pulumi", "consul"}, License: "Apache-2.0",