Overview
This article provides the steps required to upgrade a tenant’s extensibility runtime to Node 22 using the Auth0 Deploy CLI.
Applies To
- Auth0 Deploy CLI
Solution
When using the Auth0 Deploy CLI, update the tenant section of the tenant.yaml
file with the Node 22 version.
For example:
tenant:
friendly_name: My Tenant
sandbox_version: "22"
...
In Terraform, it would look something like the following:
resource "auth0_tenant" "my_tenant" {
friendly_name = "My Tenant"
sandbox_version = "22"
...
}