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)
- Hooks (beta)
- 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
:warning: This is a development version and should not be used in production.
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.
Install
General Install
npm install auth0-deploy-cli@dev -g
Configuration
There are 2 new configuration properties that should be added to your config.json
file, please note this is also temporary and will not be required in the full release, see Hooks Support:
-
WEBTASK_API_TOKEN - The authorization token for your tenant that will be used to communicate with webtask. You may grab this token from executing the following code in your developer console while on https://manage.auth0.com
fetch('https://manage.auth0.com/api/tenant/params/sandbox').then(res => res.json()).then(js => console.log(js.sandbox.token))
-
WEBTASK_API_URL - The value for this depends on the region of your tenant:
- US:
https://sandbox8-us.it.auth0.com
- EU:
https://sandbox8-eu.it.auth0.com
- AU:
https://sandbox8-au.it.auth0.com
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.
In the event that the extension did not create the right scopes, confirm the following:
- Navigate to your application that was created for the deploy cli, typically named
auth0-deploy-cli-extension
. - Ensure the Application type is Machine to Machine.
- Refresh the page and a APIs tab should appear on the client.
- On the APIs tab, on Auth0 Management API click the drop down (right arrow) to show the list of permissions.
- Ensure the following scopes below are selected:
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
- read:roles
- read:prompts
- update:prompts
- read:branding
- update:branding
Hooks beta Support
This version of the CLI will communicate directly to webtask. Your webtask authorization token will be required, it should be treated with care as with your other auth0 client secrets. Please note this will be temporary and the official release will consume the Hooks Management API endpoint.
Hook Model
Property | Type | Description | Example |
---|
id | string (ulid) | Identifier representing the hook. The type of uuid will be a ULID. | 01ARZ3NDEKTSV4RRFFQ69G5FAV |
name | string | Name of the hook. | my-hook |
triggerId | string | The id of the trigger the hook will be executed as during the some workflow. | credentials-exchange , pre-user-registration or post-user-registration |
code | string | The code that will be executed when the hook is triggered. | /** Your code here **/ |
secrets | dictionary | A list of key-value that contains a mapping of secrets that will be injected in the code during execution. | { 'api-key': 'your-api-key' } |
dependencies | dictionary | A list of key-value that contains required npm modules and the version. | { 'bcrypt': '3.0.6' } |
active | boolean | Will determine if the hook should be active or not. Only one hook for a trigger can be active at a time. | true |
Examples
Please see the /examples/
directory on the the hooks-beta branch.
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