ran setup.sh

This commit is contained in:
2025-04-18 13:29:38 -07:00
parent b78296ab5b
commit 0674f1ddab
23 changed files with 195 additions and 123 deletions

View File

@@ -1,14 +1,6 @@
# Terraform Bridge Provider Boilerplate
# Incus Resource Provider
This repository is the template for authoring a Pulumi package from an existing Terraform provider as part of the guide for [authoring and publishing Pulumi packages](https://www.pulumi.com/docs/iac/packages-and-automation/pulumi-packages/authoring/).
This repository is initially set up as a fictitious provider named "xyz" to demonstrate a resource, a data source and configuration derived from the [github.com/pulumi/terraform-provider-xyz provider](https://github.com/pulumi/terraform-provider-xyz).
Read the [setup instructions](SETUP.md) for step-by-step instructions on how to bridge a new provider and refer to our complete docs [guide for authoring and publishing a Pulumi Package](https://www.pulumi.com/docs/iac/packages-and-automation/pulumi-packages/authoring/).
# Xyz Resource Provider
The Xyz Resource Provider lets you manage [Xyz](http://example.com) resources.
The Incus Resource Provider lets you manage [Incus](http://example.com) resources.
## Installing
@@ -19,13 +11,13 @@ This package is available for several languages/platforms:
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
```bash
npm install @pulumi/xyz
npm install @pulumi/incus
```
or `yarn`:
```bash
yarn add @pulumi/xyz
yarn add @pulumi/incus
```
### Python
@@ -33,7 +25,7 @@ yarn add @pulumi/xyz
To use from Python, install using `pip`:
```bash
pip install pulumi_xyz
pip install pulumi_incus
```
### Go
@@ -41,7 +33,7 @@ pip install pulumi_xyz
To use from Go, use `go get` to grab the latest version of the library:
```bash
go get github.com/pulumi/pulumi-xyz/sdk/go/...
go get github.com/pulumi/pulumi-incus/sdk/go/...
```
### .NET
@@ -49,15 +41,15 @@ go get github.com/pulumi/pulumi-xyz/sdk/go/...
To use from .NET, install using `dotnet add package`:
```bash
dotnet add package Pulumi.Xyz
dotnet add package Pulumi.Incus
```
## Configuration
The following configuration points are available for the `xyz` provider:
The following configuration points are available for the `incus` provider:
- `xyz:region` (environment: `XYZ_REGION`) - the region in which to deploy resources
- `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/xyz/api-docs/).
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/incus/api-docs/).