From 6f332891145017deedaf8bd4e2f0b25cfc0f1bfa Mon Sep 17 00:00:00 2001 From: Ian Wahbe Date: Wed, 13 Nov 2024 14:30:19 +0100 Subject: [PATCH] Add display name --- provider/cmd/pulumi-resource-aws/schema-minimal.json | 1 + provider/cmd/pulumi-resource-aws/schema.json | 1 + provider/resources.go | 1 + 3 files changed, 3 insertions(+) diff --git a/provider/cmd/pulumi-resource-aws/schema-minimal.json b/provider/cmd/pulumi-resource-aws/schema-minimal.json index adb54f72e5..8187a43300 100644 --- a/provider/cmd/pulumi-resource-aws/schema-minimal.json +++ b/provider/cmd/pulumi-resource-aws/schema-minimal.json @@ -1,5 +1,6 @@ { "name": "aws", + "displayName": "AWS", "description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.", "keywords": [ "pulumi", diff --git a/provider/cmd/pulumi-resource-aws/schema.json b/provider/cmd/pulumi-resource-aws/schema.json index 45b0b8b572..3437af03cc 100644 --- a/provider/cmd/pulumi-resource-aws/schema.json +++ b/provider/cmd/pulumi-resource-aws/schema.json @@ -1,5 +1,6 @@ { "name": "aws", + "displayName": "AWS", "description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.", "keywords": [ "pulumi", diff --git a/provider/resources.go b/provider/resources.go index bb1fd8d560..c33d30afc9 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -832,6 +832,7 @@ func ProviderFromMeta(metaInfo *tfbridge.MetadataInfo) *tfbridge.ProviderInfo { prov := tfbridge.ProviderInfo{ P: p, Name: "aws", + DisplayName: "AWS", Description: "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.", Keywords: []string{"pulumi", "aws"}, License: "Apache-2.0",