-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
173 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
# release workflow will build main anyway. No need to do it twice. | ||
- 'main' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
prerequisites: | ||
permissions: | ||
pull-requests: write | ||
uses: pulumiverse/infra/.github/workflows/[email protected] | ||
with: | ||
provider: cpln | ||
goversion: 1.21.x | ||
build: | ||
needs: prerequisites | ||
uses: pulumiverse/infra/.github/workflows/[email protected] | ||
with: | ||
provider: cpln | ||
goversion: 1.21.x | ||
dotnetversion: 6.0.300 | ||
nodeversion: 20.x | ||
pythonversion: 3.9 | ||
name: build | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
# release workflow will build main anyway. No need to do it twice. | ||
- 'main' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
prerequisites: | ||
permissions: | ||
pull-requests: write | ||
uses: pulumiverse/infra/.github/workflows/[email protected] | ||
with: | ||
provider: cpln | ||
goversion: 1.21.x | ||
build: | ||
needs: prerequisites | ||
uses: pulumiverse/infra/.github/workflows/[email protected] | ||
with: | ||
provider: cpln | ||
goversion: 1.21.x | ||
dotnetversion: 6.0.300 | ||
nodeversion: 20.x | ||
pythonversion: 3.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
# Control Plane (cpln) Resource Provider | ||
|
||
The Control Plane Resource Provider lets you manage [Control Plane](https://controlplane.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 @pulumiverse/cpln | ||
``` | ||
|
||
or `yarn`: | ||
|
||
```bash | ||
yarn add @pulumiverse/cpln | ||
``` | ||
|
||
### Python | ||
|
||
To use from Python, install using `pip`: | ||
|
||
```bash | ||
pip install pulumi_cpln | ||
``` | ||
|
||
### Go | ||
|
||
To use from Go, use `go get` to grab the latest version of the library: | ||
|
||
```bash | ||
go get github.com/pulumiverse/pulumi-cpln/sdk/go/... | ||
``` | ||
|
||
### .NET | ||
|
||
To use from .NET, install using `dotnet add package`: | ||
|
||
```bash | ||
dotnet add package Pulumiverse.cpln | ||
``` | ||
|
||
## Configuration | ||
|
||
The following configuration points are available for the `cpln` provider: | ||
|
||
- `cpln:org` - The Control Plane org that this provider will perform actions against | ||
- `cpln:endpoint` - The Control Plane Data Service API endpoint | ||
- `cpln:profile` - The user/service account profile that this provider will use to authenticate to the data service | ||
- `cpln:token` - A generated token that can be used to authenticate to the data service API | ||
- `cpln:refreshToken` - A generated token that can be used to authenticate to the data service API | ||
|
||
## Reference | ||
|
||
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/cpln/api-docs/). | ||
# Control Plane (cpln) Resource Provider | ||
|
||
The Control Plane Resource Provider lets you manage [Control Plane](https://controlplane.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 @pulumiverse/cpln | ||
``` | ||
|
||
or `yarn`: | ||
|
||
```bash | ||
yarn add @pulumiverse/cpln | ||
``` | ||
|
||
### Python | ||
|
||
To use from Python, install using `pip`: | ||
|
||
```bash | ||
pip install pulumiverse-cpln | ||
``` | ||
|
||
### Go | ||
|
||
To use from Go, use `go get` to grab the latest version of the library: | ||
|
||
```bash | ||
go get github.com/pulumiverse/pulumi-cpln/sdk/go/... | ||
``` | ||
|
||
### .NET | ||
|
||
To use from .NET, install using `dotnet add package`: | ||
|
||
```bash | ||
dotnet add package Pulumiverse.cpln | ||
``` | ||
|
||
## Configuration | ||
|
||
The following configuration points are available for the `cpln` provider: | ||
|
||
- `cpln:org` - The Control Plane org that this provider will perform actions against | ||
- `cpln:endpoint` - The Control Plane Data Service API endpoint | ||
- `cpln:profile` - The user/service account profile that this provider will use to authenticate to the data service | ||
- `cpln:token` - A generated token that can be used to authenticate to the data service API | ||
- `cpln:refreshToken` - A generated token that can be used to authenticate to the data service API | ||
|
||
## Reference | ||
|
||
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/cpln/api-docs/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
# cpln Resource Provider | ||
|
||
The cpln Resource Provider lets you manage [Control Plane](https://controlplane.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 @pulumiverse/cpln | ||
``` | ||
|
||
or `yarn`: | ||
|
||
```bash | ||
yarn add @pulumiverse/cpln | ||
``` | ||
|
||
### Python | ||
|
||
To use from Python, install using `pip`: | ||
|
||
```bash | ||
pip install pulumi_cpln | ||
``` | ||
|
||
### Go | ||
|
||
To use from Go, use `go get` to grab the latest version of the library: | ||
|
||
```bash | ||
go get github.com/pulumiverse/pulumi-cpln/sdk/go/... | ||
``` | ||
|
||
### .NET | ||
|
||
To use from .NET, install using `dotnet add package`: | ||
|
||
```bash | ||
dotnet add package Pulumiverse.cpln | ||
``` | ||
|
||
## Configuration | ||
|
||
The following configuration points are available for the `cpln` provider: | ||
|
||
- `cpln:org` - The Control Plane org that this provider will perform actions against | ||
- `cpln:endpoint` - The Control Plane Data Service API endpoint | ||
- `cpln:profile` - The user/service account profile that this provider will use to authenticate to the data service | ||
- `cpln:token` - A generated token that can be used to authenticate to the data service API | ||
- `cpln:refreshToken` - A generated token that can be used to authenticate to the data service API | ||
|
||
## Reference | ||
|
||
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/cpln/api-docs/). | ||
# Control Plane (cpln) Resource Provider | ||
|
||
The Control Plane Resource Provider lets you manage [Control Plane](https://controlplane.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 @pulumiverse/cpln | ||
``` | ||
|
||
or `yarn`: | ||
|
||
```bash | ||
yarn add @pulumiverse/cpln | ||
``` | ||
|
||
### Python | ||
|
||
To use from Python, install using `pip`: | ||
|
||
```bash | ||
pip install pulumiverse-cpln | ||
``` | ||
|
||
### Go | ||
|
||
To use from Go, use `go get` to grab the latest version of the library: | ||
|
||
```bash | ||
go get github.com/pulumiverse/pulumi-cpln/sdk/go/... | ||
``` | ||
|
||
### .NET | ||
|
||
To use from .NET, install using `dotnet add package`: | ||
|
||
```bash | ||
dotnet add package Pulumiverse.cpln | ||
``` | ||
|
||
## Configuration | ||
|
||
The following configuration points are available for the `cpln` provider: | ||
|
||
- `cpln:org` - The Control Plane org that this provider will perform actions against | ||
- `cpln:endpoint` - The Control Plane Data Service API endpoint | ||
- `cpln:profile` - The user/service account profile that this provider will use to authenticate to the data service | ||
- `cpln:token` - A generated token that can be used to authenticate to the data service API | ||
- `cpln:refreshToken` - A generated token that can be used to authenticate to the data service API | ||
|
||
## Reference | ||
|
||
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/cpln/api-docs/). |