https://github.com/dirien/pulumi-vultr
Pulumi provider for Vultr
https://github.com/dirien/pulumi-vultr
pulumi vultr
Last synced: 7 months ago
JSON representation
Pulumi provider for Vultr
- Host: GitHub
- URL: https://github.com/dirien/pulumi-vultr
- Owner: dirien
- License: apache-2.0
- Created: 2022-12-26T10:26:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-05T09:29:06.000Z (7 months ago)
- Last Synced: 2025-03-09T03:47:39.306Z (7 months ago)
- Topics: pulumi, vultr
- Language: Python
- Homepage:
- Size: 3.52 MB
- Stars: 19
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Vultr Resource Provider

The Vultr Resource Provider lets you manage [Vultr](https://www.vultr.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 @ediri/vultr
```or `yarn`:
```bash
yarn add @ediri/vultr
```### Python
To use from Python, install using `pip`:
``
```bash
pip install ediri-vultr
```### Go
To use from Go, use `go get` to grab the latest version of the library:
```bash
go get github.com/dirien/pulumi-vultr/sdk/v2
```### .NET
To use from .NET, install using `dotnet add package`:
```bash
dotnet add package ediri.Vultr
```## Configuration
The following configuration points are available for the `vultr` provider:
- `vultr:apiKey` (environment: `VULTR_API_KEY`) - This is the Vultr API key. It can be found in the [Vultr API section](https://my.vultr.com/settings/#settingsapi).
- `vultr:rateLimit` - Vultr limits API calls to 30 calls per second. This field lets you configure how the rate limit using milliseconds. The default value if this field is omitted is 500 milliseconds per call.
- `vultr:retryLimit` - This field lets you configure how many retries should be attempted on a failed call. The default value if this field is omitted is 3 retries.## Reference
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/vultr/api-docs/).