Skip to content

Commit

Permalink
Merge pull request #14 from pulumiverse/short-display-name
Browse files Browse the repository at this point in the history
  • Loading branch information
ringods authored Aug 29, 2022
2 parents 907610b + b56d2da commit 7743756
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-resource-time/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "time",
"displayName": "Pulumi Time provider",
"displayName": "Time",
"description": "A Pulumi package for creating and managing Time resources",
"keywords": [
"pulumi",
Expand Down
6 changes: 3 additions & 3 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func Provider() tfbridge.ProviderInfo {
Name: "time",
// DisplayName is a way to be able to change the casing of the provider
// name when being displayed on the Pulumi registry
DisplayName: "Pulumi Time provider",
DisplayName: "Time",
// The default publisher for all packages is Pulumi.
// Change this to your personal name (or a company name) that you
// would like to be shown in the Pulumi Registry if this package is published
Expand All @@ -73,7 +73,7 @@ func Provider() tfbridge.ProviderInfo {
// category/cloud tag helps with categorizing the package in the Pulumi Registry.
// For all available categories, see `Keywords` in
// https://www.pulumi.com/docs/guides/pulumi-packages/schema/#package.
Keywords: []string{
Keywords: []string{
"pulumi",
"time",
"category/utility",
Expand All @@ -95,7 +95,7 @@ func Provider() tfbridge.ProviderInfo {
// },
},
PreConfigureCallback: preConfigureCallback,
Resources: map[string]*tfbridge.ResourceInfo{
Resources: map[string]*tfbridge.ResourceInfo{
// Map each resource in the Terraform provider to a Pulumi type. Two examples
// are below - the single line form is the common case. The multi-line form is
// needed only if you wish to override types or other default options.
Expand Down

0 comments on commit 7743756

Please sign in to comment.