vercel
Cloud platform for serverless deployment and hosting of web applications.
Provider Summary (v23.12.00183)
total services: 19
total methods: 138
total methods: 138
total resources: 40
total selectable resources: 36
total selectable resources: 36
See also:
[SHOW
] [DESCRIBE
] [REGISTRY
]
Installation
To pull the latest version of the vercel
provider, run the following command:
REGISTRY PULL vercel;
To view previous provider versions or to pull a specific provider version, see here.
Authentication
The following system environment variables are used for authentication by default:
VERCEL_API_TOKEN
- Vercel API Token (see Creating a Vercel API Token)
These variables are sourced at runtime (from the local machine or as CI variables/secrets).
Using different environment variables
To use different environment variables (instead of the defaults), use the --auth
flag of the stackql
program. For example:
AUTH='{ "okta": { "type": "bearer", "credentialsenvvar": "YOUR_VERCEL_API_TOKEN_VAR" }}'
stackql shell --auth="${AUTH}"
or using PowerShell:
$Auth = "{ 'okta': { 'type': 'bearer', 'credentialsenvvar': 'YOUR_VERCEL_API_TOKEN_VAR' }}"
stackql.exe shell --auth=$Auth