|
1 |
| -// Copyright 2016-2018, Pulumi Corporation. |
| 1 | +// Copyright 2016-2022, Pulumiverse. |
2 | 2 | //
|
3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License");
|
4 | 4 | // you may not use this file except in compliance with the License.
|
@@ -83,37 +83,18 @@ func Provider() tfbridge.ProviderInfo {
|
83 | 83 |
|
84 | 84 | // Create a Pulumi provider mapping
|
85 | 85 | 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", |
105 | 90 | PluginDownloadURL: "github://api.github.com/pulumiverse",
|
106 | 91 | 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", |
117 | 98 | Config: map[string]*tfbridge.SchemaInfo{
|
118 | 99 | "endpoint": {
|
119 | 100 | Default: &tfbridge.DefaultInfo{
|
|
0 commit comments