https://github.com/vatesfr/pulumi-xenorchestra
A Pulumi provider for Xen Orchestra
https://github.com/vatesfr/pulumi-xenorchestra
Last synced: over 1 year ago
JSON representation
A Pulumi provider for Xen Orchestra
- Host: GitHub
- URL: https://github.com/vatesfr/pulumi-xenorchestra
- Owner: vatesfr
- License: apache-2.0
- Created: 2024-03-14T18:50:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T03:20:48.000Z (over 1 year ago)
- Last Synced: 2025-04-07T04:24:25.570Z (over 1 year ago)
- Language: Makefile
- Size: 1.32 MB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
# Xen Orchestra Provider
The Xen Orchestra Provider lets you manage [Xen Orchestra](https://github.com/vatesfr/xen-orchestra) 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 @vates/pulumi-xenorchestra
```
or `yarn`:
```bash
yarn add @vates/pulumi-xenorchestra
```
### Python
To use from Python, install using `pip`:
```bash
pip install pulumi-xenorchestra
```
### Go
To use from Go, use `go get` to grab the latest version of the library:
```bash
go get github.com/vatesfr/pulumi-xenorchestra/sdk
```
### .NET
To use from .NET, install using `dotnet add package`:
```bash
dotnet add package Pulumi.Xenorchestra
```
## Configuration
Use `pulumi config set xenorchestra:` or pass options to the constructor of new xenorchestra.Provider.
The following configuration points are available for the `xenorchestra` provider:
- `xenorchestra:url` (environment: `XOA_URL`) - the URL for the Xen Orchestra websockets endpoint. Starts with `wss://`
Set either:
- `xenorchestra:username` (environment: `XOA_USERNAME`) - the username for Xen Orchestra
- `xenorchestra:password` (environment: `XOA_PASSWORD`) - the password for Xen Orchestra
Or:
- `xenorchestra:token` (environment: `XOA_TOKEN`) - API token for Xen Orchestra
- `xenorchestra:insecure` (environment: `XOA_INSECURE`) - set to any value to disable SSL verification, false by default. Only use if you are using a self-signed certificate and know what you are doing.
## Usage
See [docs](./docs/_index.md) for examples.
## Building
See [contributing](CONTRIBUTING.md) for details on how to build and contribute to this provider.
## Reference
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/xenorchestra/api-docs/).