REGISTRY
Changes the context to a specified provider or service.
See also:
[ StackQL Resource Hierarchy ]
Syntax
registryStatement::=
REGISTRY { LIST [<provider>] | PULL <provider> [<version>]};
Examples
List available providers
Retrieves the list of the latest versions of each available provider.
REGISTRY LIST;
List all versions for a specific provider
Retrieves the list of all available versions of a specific provider.
REGISTRY LIST google;
Install the latest version of a provider
REGISTRY PULL okta;
Install a specific version of a provider
REGISTRY PULL azure v23.01.00104;