https://github.com/pulumiverse/pulumi-vercel
https://github.com/pulumiverse/pulumi-vercel
pulumi pulumi-provider
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pulumiverse/pulumi-vercel
- Owner: pulumiverse
- License: apache-2.0
- Created: 2022-07-18T07:29:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-30T18:55:14.000Z (6 months ago)
- Last Synced: 2025-03-31T05:04:34.671Z (6 months ago)
- Topics: pulumi, pulumi-provider
- Language: Python
- Homepage:
- Size: 2.02 MB
- Stars: 17
- Watchers: 2
- Forks: 6
- Open Issues: 6
-
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
# Vercel Resource Provider
The Vercel Resource Provider lets you manage [Vercel](https://vercel.com) resources.
The Pulumi `Vercel` provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript: [`@pulumiverse/vercel`](https://www.npmjs.com/package/@pulumiverse/vercel)
- Python: [`pulumiverse-vercel`](https://pypi.org/project/pulumiverse-vercel/)
- Go: [`github.com/pulumiverse/pulumi-vercel/sdk`](https://pkg.go.dev/github.com/pulumiverse/pulumi-vercel/sdk)
- .NET: [`Pulumiverse.vercel`](https://www.nuget.org/packages/Pulumiverse.vercel)## 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/vercel
```or `yarn`:
```bash
yarn add @pulumiverse/vercel
```### Python
To use from Python, install using `pip`:
```bash
pip install pulumiverse-vercel
```### Go
To use from Go, use `go get` to grab the latest version of the library:
```bash
go get github.com/pulumiverse/pulumi-vercel/sdk/go/...
```### .NET
To use from .NET, install using `dotnet add package`:
```bash
dotnet add package Pulumiverse.vercel
```## Configuration
The following configuration points are available for the `vercel` provider:
- `vercel:apiToken` (environment: `VERCEL_API_TOKEN`) - the API key for `vercel`
- `vercel:team` - The default Vercel Team to use when creating resources. This can be provided as either a team slug, or team ID. The slug and ID are both available from the Team Settings page in the Vercel dashboard.## Reference
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/vercel/api-docs/).