netlify
Web development and content distribution platform.
Provider Summary (v23.04.00141)
total services: 30
total methods: 105
total methods: 105
total resources: 51
total selectable resources: 31
total selectable resources: 31
See also:
[SHOW
] [DESCRIBE
] [REGISTRY
]
Installation
To pull the latest version of the netlify
provider, run the following command:
REGISTRY PULL netlify;
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:
NETLIFY_AUTH_TOKEN
- Netlify API token (see How to Create a Netlify 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='{ "netlify": { "type": "bearer", "credentialsenvvar": "YOUR_NETLIFY_AUTH_TOKEN_VAR" }}'
stackql shell --auth="${AUTH}"
or using PowerShell:
$Auth = "{ 'netlify': { 'type': 'bearer', 'credentialsenvvar': 'YOUR_NETLIFY_AUTH_TOKEN_VAR' }}"
stackql.exe shell --auth=$Auth