Skip to content
This repository was archived by the owner on Sep 12, 2023. It is now read-only.

Commit 88cb70a

Browse files
committed
add logo
1 parent b3419fb commit 88cb70a

File tree

3 files changed

+12
-30
lines changed

3 files changed

+12
-30
lines changed

provider/cmd/pulumi-resource-ovh/schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"license": "Apache-2.0",
1212
"attribution": "This Pulumi package is based on the [`ovh` Terraform Provider](https://github.com/ovh/terraform-provider-ovh).",
1313
"repository": "https://github.com/pulumiverse/pulumi-ovh",
14+
"logoUrl": "https://raw.githubusercontent.com/pulumiverse/pulumi-ovh/main/assets/ovh.svg",
1415
"pluginDownloadURL": "github://api.github.com/pulumiverse",
1516
"publisher": "Pulumiverse",
1617
"meta": {

provider/resources.go

Lines changed: 11 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016-2018, Pulumi Corporation.
1+
// Copyright 2016-2022, Pulumiverse.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -83,37 +83,18 @@ func Provider() tfbridge.ProviderInfo {
8383

8484
// Create a Pulumi provider mapping
8585
prov := tfbridge.ProviderInfo{
86-
P: p,
87-
Name: "ovh",
88-
// DisplayName is a way to be able to change the casing of the provider
89-
// name when being displayed on the Pulumi registry
90-
DisplayName: "OVH",
91-
// The default publisher for all packages is Pulumi.
92-
// Change this to your personal name (or a company name) that you
93-
// would like to be shown in the Pulumi Registry if this package is published
94-
// there.
95-
Publisher: "Pulumiverse",
96-
// LogoURL is optional but useful to help identify your package in the Pulumi Registry
97-
// if this package is published there.
98-
//
99-
// You may host a logo on a domain you control or add an SVG logo for your package
100-
// in your repository and use the raw content URL for that file as your logo URL.
101-
LogoURL: "",
102-
// PluginDownloadURL is an optional URL used to download the Provider
103-
// for use in Pulumi programs
104-
// e.g https://github.com/org/pulumi-provider-name/releases/
86+
P: p,
87+
Name: "ovh",
88+
DisplayName: "OVH",
89+
Publisher: "Pulumiverse",
10590
PluginDownloadURL: "github://api.github.com/pulumiverse",
10691
Description: "A Pulumi package for creating and managing OVH cloud resources.",
107-
// category/cloud tag helps with categorizing the package in the Pulumi Registry.
108-
// For all available categories, see `Keywords` in
109-
// https://www.pulumi.com/docs/guides/pulumi-packages/schema/#package.
110-
Keywords: []string{"pulumi", "ovh", "category/cloud"},
111-
License: "Apache-2.0",
112-
Homepage: "https://www.pulumi.com",
113-
Repository: "https://github.com/pulumiverse/pulumi-ovh",
114-
// The GitHub Org for the provider - defaults to `terraform-providers`. Note that this
115-
// should match the TF provider module's require directive, not any replace directives.
116-
GitHubOrg: "ovh",
92+
Keywords: []string{"pulumi", "ovh", "category/cloud"},
93+
License: "Apache-2.0",
94+
LogoURL: "https://raw.githubusercontent.com/pulumiverse/pulumi-ovh/main/assets/ovh.svg",
95+
Homepage: "https://www.pulumi.com",
96+
Repository: "https://github.com/pulumiverse/pulumi-ovh",
97+
GitHubOrg: "ovh",
11798
Config: map[string]*tfbridge.SchemaInfo{
11899
"endpoint": {
119100
Default: &tfbridge.DefaultInfo{
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)