serverless-scaleway-functions
Version:
Provider plugin for the Serverless Framework v3.x which adds support for Scaleway Functions.
20 lines (16 loc) • 535 B
JavaScript
;
const FUNCTIONS_API_URL = "https://api.scaleway.com/functions/v1beta1/regions";
const CONTAINERS_API_URL =
"https://api.scaleway.com/containers/v1beta1/regions";
const REGISTRY_API_URL = "https://api.scaleway.com/registry/v1/regions";
const ACCOUNT_API_URL = "https://api.scaleway.com/account/v3/projects";
const DEFAULT_REGION = "fr-par";
const PRIVACY_PRIVATE = "private";
module.exports = {
FUNCTIONS_API_URL,
CONTAINERS_API_URL,
REGISTRY_API_URL,
ACCOUNT_API_URL,
PRIVACY_PRIVATE,
DEFAULT_REGION,
};