Auth0 Deploy CLI
Auth0 supports continuous integration and deployment (CI/CD) of Auth0 Tenants through our source control extensions and integration into existing CI/CD pipelines by using this auth0-deploy-cli tool.
The auth0-deploy-cli
tool supports the importing and exporting of Auth0 Tenant configuration data.
Supported Features
- Supported Auth0 Objects
- Tenant Settings
- Rules (Including Secrets/Settings)
- Connections
- Custom Databases
- Clients / Applications
- Resource Servers (APIs)
- Pages
- Email Templates and Provider
- Guardian Settings
- Configuration options
- Defined Directory Structure
- YAML Configuration
- Programmatically
- Environment Variable Replacements
WARNING
This tool can be destructive to your Auth0 tenant. Please ensure you have read the documentation and tested the tool on a development tenant before using in production.
What's new in version 2
The auth0-deploy-cli
tool was refactored bringing the following updates.
- Added YAML support
- Added support for export (deprecation of separate auth0 dump tool)
- Delete support - The tool will, if configured via
AUTH0_ALLOW_DELETE
, delete objects if does not exist within the deploy configuration. - Support for additional Auth0 objects
- Connections including Social, Enterprise and Passwordless configurations.
- Improved support for database connections and associated configuration.
- Email Templates
- Email Provider
- Client Grants
- Rule Configs (import only)
- Guardian config
- Better support for pages
- Tenant level settings
- Added support to be called programmatically
- Improved logging
- To simplify the tool the slack hook was removed. You can invoke the tool programmatically to support calling your own hooks
- Support referencing clients by their name vs client_id (automatic mapping during export/import)
- Simplified to support future Auth0 object types
UPGRADING FROM v1 to v2
The auth0-deploy-cli
was completely rewritten from version 1 to version 2 which means it is not backwards compatible. Please consider the following when upgrading:
- The directory structure and format has changed to allow for additional object types.
- The command line parameters have changed to allow for additional options such as export.
Install
General Install
npm i -g auth0-deploy-cli
Pre-requisites
For this tool to function it must be authorized to the Auth0 Management API. You can do this by creating an application in your Auth0 service that has access to the management API with the following scopes before.
Use the Auth0 Deploy CLI Extension to create the application. At the bottom of the README are instructions for doing this by hand instead.
Scopes
- read:client_grants
- create:client_grants
- delete:client_grants
- update:client_grants
- read:clients
- update:clients
- delete:clients
- create:clients
- read:client_keys
- update:client_keys
- delete:client_keys
- create:client_keys
- read:connections
- update:connections
- delete:connections
- create:connections
- read:resource_servers
- update:resource_servers
- delete:resource_servers
- create:resource_servers
- read:rules
- update:rules
- delete:rules
- create:rules
- read:rules_configs
- update:rules_configs
- delete:rules_configs
- read:email_provider
- update:email_provider
- delete:email_provider
- create:email_provider
- read:tenant_settings
- update:tenant_settings
- read:grants
- delete:grants
- read:guardian_factors
- update:guardian_factors
- read:email_templates
- create:email_templates
- update:email_templates
Usage
This tool supports multiple methods to import and export Auth0 configuration objects.
Option 1 - Predefined Directory Structure
Please refer to Directory README for usage instructions and examples.
Option 2 - YAML configuration file
Please refer to YAML README for usage instructions and examples.
Option 3 - Called Programmatically
The tool can be called programmatically. Please see below for an example.
import { deploy, dump } from 'auth0-deploy-cli';
const config = {
AUTH0_DOMAIN: process.env.AUTH0_DOMAIN,
AUTH0_CLIENT_SECRET: process.env.AUTH0_CLIENT_SECRET,
AUTH0_CLIENT_ID: process.env.AUTH0_CLIENT_ID,
AUTH0_EXPORT_IDENTIFIERS: false,
AUTH0_ALLOW_DELETE: false
};
dump({
output_folder: 'path/to/directory',
base_path: basePath,
config_file: configFile,
config: configObj,
export_ids: exportIds,
secret
})
.then(() => console.log('yey export was successful'))
.catch(err => console.log(`Oh no, something went wrong. Error: ${err}`));
deploy({
input_file: 'path/to/yaml/or/directory',
base_path: basePath,
config_file: configFile,
config: configObj,
env,
secret
})
.then(() => console.log('yey deploy was successful'))
.catch(err => console.log(`Oh no, something went wrong. Error: ${err}`));
Troubleshooting
The auth0-deploy-cli
tool leverages the Auth0 Management API passing through objects for creates, updates and deletions.
You may experience Bad Request
and Payload validation
errors. These errors are returned from the Auth0 Management API, and usually mean the object has attributes which are not writable or no longer available (legacy). This can happen when exporting from an older Auth0 tenant and importing into a newly created tenant. In this scenario you may need to update your configuration to support the new object format. See #45 for a potential fix.
CLI Options
The following options are supported by the cli.
a0deploy --help
Auth0 Deploy CLI
Commands:
a0deploy import Deploy Configuration
a0deploy export Export Auth0 Tenant Configuration
Options:
--help Show help [boolean]
--version Show version number [boolean]
--verbose, -v Dump extra debug information. [string] [default: false]
--proxy_url, -p A url for proxying requests, only set this if you are behind a proxy. [string]
Examples:
a0deploy export -c config.json -f yaml -o path/to/export Dump Auth0 config to folder in YAML format
a0deploy export -c config.json -f directory -o path/to/export Dump Auth0 config to folder in directory format
a0deploy import -c config.json -i tenant.yaml Deploy Auth0 via YAML
a0deploy import -c config.json -i path/to/files Deploy Auth0 via Path
See README (https://github.com/auth0/auth0-deploy-cli) for more in-depth information on configuration and setup.
Recommended Approach/Best Practices
The recommended approach for utilizing this CLI is to incorporate it into your build system. Create a repository to store your deploy configuration, then create a set of configuration files for each environment. On your continuous integration server, have a deploy build for each environment. This deploy build should update a local copy of the deploy configuration repository, then run the CLI to deploy it to that environment. Read on for more detailed information.
Auth0 Tenant layout
The recommended approach is to have a different Auth0 tenant/account for each environment. For example: fabrikam-dev, fabrikam-uat, fabrikam-staging, and fabrikam-prod.
Your Deploy Configuration Repository
Your configuration repository should contain the files as described in the selected option (Directory or YAML)
You should have a branch for each tenant/account. This allows you to make changes to dev, but not deploy them until you merge. With this setup, you can have each environment have a CI task that automatically deploys the changes to its target environment when the branch is updated with the latest.
So your flow would be as follows:
dev changes are tested, then merged to uat, once tested they are merged to staging, once staging is tested they are merged to prod.
You may want to set your prod to only deploy when triggered manually.
Your CI server configuration
Your CI server should have a different deploy task and config for each environment. Since each tenant/account will need to have the auth0-deploy-cli-extension installed in it with a different domain, client ID, and secret, this has to happen anyway and will avoid accidentally deploying to the wrong environment.
The deploy task should follow these steps:
- Update the local repo to the latest. (each environment should have its own copy of the repo set to its own branch)
- If there are changes, call a0deploy
- Run a suite of tests to confirm configuration is working
- Optional: merge to next branch
Use keyword mappings to handle differences between the environments
You should not have to store differences between environments in the Deploy Configuration Repository. Use the keyword mappings to allow the repository to be environment agnostic, and instead store the differences in the separate config.json files for each environment that are stored on the CI server.
Other Helpful Topics
To test locally
Clone the GitHub repo and install globally
git clone git@github.com:auth0/auth0-deploy-cli
cd auth0-deploy-cli
npm install
npm run test
To Create Client Application by Hand
- log into your dashboard
- click the applications tab
- click the "Create Application" button
- Name it something like "Deploy Client"
- Select Machine-to-Machine as the application type
- Click Create
- Use the "Select an API" dropdown to choose: "Auth0 Management API"
- Select the scopes defined in the section above
- Click Authorize
Known issues
See https://github.com/auth0/auth0-deploy-cli/issues
License
MIT