diff --git a/provider/cmd/pulumi-resource-azure/schema.json b/provider/cmd/pulumi-resource-azure/schema.json index 2f753ed2d6..1f055fea18 100644 --- a/provider/cmd/pulumi-resource-azure/schema.json +++ b/provider/cmd/pulumi-resource-azure/schema.json @@ -1,5 +1,6 @@ { "name": "azure", + "displayName": "Azure", "description": "A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.", "keywords": [ "pulumi", diff --git a/provider/resources.go b/provider/resources.go index f37a6da3f0..049128a9f9 100644 --- a/provider/resources.go +++ b/provider/resources.go @@ -520,6 +520,7 @@ func Provider() tfbridge.ProviderInfo { prov := tfbridge.ProviderInfo{ P: p, Name: "azurerm", + DisplayName: "Azure", Description: "A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.", Keywords: []string{"pulumi", "azure"}, Homepage: "https://pulumi.io",