Upgrade Tenant-Wide Extensibility Runtime Node Version using Auth0 Deploy CLI and Terraform
This article provides steps to upgrade a tenant-wide extensibility (like Custom DB scripts, Actions) runtime Node version using Auth0 Deploy CLI and Terraform.
- Terraform
- Auth0 Deploy CLI
- upgrade extensibility Node version
To update the tenant-wide extensibility (like Custom DB scripts, Actions) runtime to Node version x, modify the configuration as shown below, depending on the deployment tool:
-
For Auth0 Deploy CLI: in the
tenant.yamlfile, set the value ofsandbox_versionunder thetenantsection to "x".tenant: friendly_name: Tenant Name sandbox_version: "x" ...Find the
tenant.jsonexample when using Directory stucture. -
For Terraform: in the configuration file, within the
auth0_tenantresource, set thesandbox_versionattribute to "x". Find this documented in the Example Usage and Schema.resource "auth0_tenant" "tenant_name" { friendly_name = "TenantName" sandbox_version = "x" ... }