Skip to content

Commit

Permalink
Fix: old npm owner @ovh-devrelteam/pulumi-ovh to @ovhcloud/pulumi-ovh (
Browse files Browse the repository at this point in the history
…#261)

* fix: old npm owner

* fix: define 1.1.0 for the version
  • Loading branch information
scraly authored Dec 16, 2024
1 parent 0f7a638 commit a118de0
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSES/npm/@ovh-devrelteam/pulumi-ovh/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
== @ovh-devrelteam/pulumi-ovh ==
== @ovhcloud/pulumi-ovh ==

Copyright OVHcloud 2023
Copyright (c) 2013 Dario Castañé. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pulumi.export("version", my_kube_cluster.version)
```typescript
import * as pulumi from "@pulumi/pulumi";

import * as ovh from "@ovh-devrelteam/pulumi-ovh"
import * as ovh from "@ovhcloud/pulumi-ovh"

let config = new pulumi.Config();
let serviceName = config.require("serviceName")
Expand Down
4 changes: 2 additions & 2 deletions docs/how-to-guides/migration-from-lbrlabs-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ Replace the NPM package in your project first:

```sh
$ npm uninstall --save @lbrlabs/pulumi-ovh
$ npm install --save @ovh-devrelteam/pulumi-ovh
$ npm install --save @ovhcloud/pulumi-ovh
```

After switching the package, update the import statements in your Pulumi infrastructure code:

```diff
- import * as ovh from "@lbrlabs/pulumi-ovh";
+ import * as ovh from "@ovh-devrelteam/pulumi-ovh";
+ import * as ovh from "@ovhcloud/pulumi-ovh";
```

{{% /choosable %}}
Expand Down
2 changes: 1 addition & 1 deletion docs/installation-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Note that the [lbrlabs Pulumi OVH provider](https://github.com/lbrlabs/pulumi-ov

The Pulumi `OVH` provider is available as a package in all Pulumi languages:

* JavaScript/TypeScript: [`@ovh-devrelteam/pulumi-ovh`](https://www.npmjs.com/package/@ovh-devrelteam/pulumi-ovh)
* JavaScript/TypeScript: [`@ovhcloud/pulumi-ovh`](https://www.npmjs.com/package/@ovhcloud/pulumi-ovh)
* Python: [`pulumi_ovh`](https://pypi.org/project/pulumi-ovh/)
* Go: [`github.com/ovh/pulumi-ovh/sdk/go/ovh`](https://pkg.go.dev/github.com/ovh/pulumi-ovh/sdk)
* .NET: [`Pulumi.Ovh`](https://www.nuget.org/packages/Pulumi.Ovh)
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/ovh-typescript/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@ovh-devrelteam/pulumi-ovh"
import * as ovh from "@ovhcloud/pulumi-ovh"

let config = new pulumi.Config();
let serviceName = config.require("serviceName")
Expand Down
14 changes: 7 additions & 7 deletions examples/kubernetes/ovh-typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/kubernetes/ovh-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@types/node": "^16"
},
"dependencies": {
"@ovh-devrelteam/pulumi-ovh": "^0.34.0",
"@ovhcloud/pulumi-ovh": "^1.1.0",
"@pulumi/pulumi": "^3.0.0"
}
}

0 comments on commit a118de0

Please sign in to comment.