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

Commit

Permalink
fix: remove svg logo (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirien authored Apr 5, 2023
1 parent 9dfdf78 commit 8126298
Show file tree
Hide file tree
Showing 10 changed files with 488 additions and 2 deletions.
1 change: 0 additions & 1 deletion provider/cmd/pulumi-resource-ovh/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"license": "Apache-2.0",
"attribution": "This Pulumi package is based on the [`ovh` Terraform Provider](https://github.com/ovh/terraform-provider-ovh).",
"repository": "https://github.com/lbrlabs/pulumi-ovh",
"logoUrl": "https://raw.githubusercontent.com/lbrlabs/pulumi-ovh/main/assets/ovh.svg",
"pluginDownloadURL": "github://api.github.com/lbrlabs",
"publisher": "lbrlabs",
"meta": {
Expand Down
2 changes: 1 addition & 1 deletion provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func Provider() tfbridge.ProviderInfo {
Description: "A Pulumi package for creating and managing OVH cloud resources.",
Keywords: []string{"pulumi", "ovh", "category/cloud"},
License: "Apache-2.0",
LogoURL: "https://raw.githubusercontent.com/lbrlabs/pulumi-ovh/main/assets/ovh.svg",
LogoURL: "",
Homepage: "https://www.pulumi.com",
Repository: "https://github.com/lbrlabs/pulumi-ovh",
GitHubOrg: "ovh",
Expand Down
Binary file modified sdk/dotnet/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sdk/java/build/libs/com.pulumi.ovh.jar
Binary file not shown.
70 changes: 70 additions & 0 deletions sdk/python/lbrlabs_pulumi_ovh.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
Metadata-Version: 2.1
Name: lbrlabs-pulumi-ovh
Version: 0.0.0
Summary: A Pulumi package for creating and managing OVH cloud resources.
Home-page: https://www.pulumi.com
License: Apache-2.0
Project-URL: Repository, https://github.com/lbrlabs/pulumi-ovh
Keywords: pulumi ovh category/cloud
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Ovh Resource Provider

The Ovh Resource Provider lets you manage cloud resources for [Ovh](http://ovh.com) resources.

## Installing

This package is available for several languages/platforms:

### Node.js (JavaScript/TypeScript)

To use from JavaScript or TypeScript in Node.js, install using either `npm`:

```bash
npm install @lbrlabs/pulumi-ovh
```

or `yarn`:

```bash
yarn add @lbrlabs/pulumi-ovh
```

### Python

To use from Python, install using `pip`:

```bash
pip install lbrlabs-pulumi-ovh
```

### Go

To use from Go, use `go get` to grab the latest version of the library:

```bash
go get github.com/lbrlabs/pulumi-ovh/sdk/go/...
```

### .NET

To use from .NET, install using `dotnet add package`:

```bash
dotnet add package Lbrlabs.PulumiPackage.Ovh
```

## Configuration

The following configuration points are available for the `Ovh` provider:

- `ovh:endpoint` (environment: `OVH_ENDPOINT`) - the Ovh endpoint, such `ovh-us`
- `ovh:applicationKey` (environment: `OVH_APPLICATION_KEY`) - the Ovh application key
- `ovh:applicationSecret` (environment: `OVH_APPLICATION_SECRET`) - the Ovh application secret
- `ovh:consumerKey` (environment: `OVH_CONSUMER_KEY`) - the Ovh consumer key

## Reference

For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/ovh/api-docs/).

Loading

0 comments on commit 8126298

Please sign in to comment.