56 lines
1.1 KiB
Markdown
56 lines
1.1 KiB
Markdown
# Incus Resource Provider
|
|
|
|
The Incus Resource Provider lets you manage [Incus](https://linuxcontainers.org/incus/introduction/) 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 @kiterun/incus
|
|
```
|
|
|
|
or `yarn`:
|
|
|
|
```bash
|
|
yarn add @kiterun/incus
|
|
```
|
|
|
|
### Python
|
|
|
|
To use from Python, install using `pip`:
|
|
|
|
```bash
|
|
pip install pulumi_incus
|
|
```
|
|
|
|
### Go
|
|
|
|
To use from Go, use `go get` to grab the latest version of the library:
|
|
|
|
```bash
|
|
go get github.com/pulumi/pulumi-incus/sdk/go/...
|
|
```
|
|
|
|
### .NET
|
|
|
|
To use from .NET, install using `dotnet add package`:
|
|
|
|
```bash
|
|
dotnet add package Pulumi.Incus
|
|
```
|
|
|
|
## Configuration
|
|
|
|
The following configuration points are available for the `incus` provider:
|
|
|
|
- `incus:region` (environment: `INCUS_REGION`) - the region in which to deploy resources
|
|
|
|
## Reference
|
|
|
|
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/incus/api-docs/).
|