/articles/extensions/index.md

https://gitlab.com/yenny.prathivi/docs · Markdown · 52 lines · 37 code · 15 blank · 0 comment · 0 complexity · d197885d2e19de0ebc9fd6bf9958415d MD5 · raw file

  1. ---
  2. url: /extensions
  3. ---
  4. # Auth0 Extensions
  5. Auth0 Extensions enable you to install applications (such as [Webtasks](https://webtask.io/)) or run commands/scripts that extend the functionality of the Auth0 base product.
  6. Each extension is separate from all other extensions. Auth0 defines extensions per tenant, so data is stored by the pair `tenant\extension`.
  7. When creating extensions, you have two options:
  8. - [building off of one of Auth0's provided extensions](#using-an-auth0-provided-extension) in the Management Portal;
  9. - [creating and installing your own](#creating-your-own-extension).
  10. ## Using an Auth0-Provided Extension
  11. Auth0 provides the following pre-defined extensions, and they are available for installation via the Management Portal. They have not, however, been fully installed. To use one or more of the following apps, you must provide the required configuration information and finish installing the extensions.
  12. ![](/media/articles/extensions/auth0-provided-extensions.png)
  13. ### Provided Apps/Jobs:
  14. - [Auth0 Authorization](/extensions/authorization-extension): manage group memberships for users.
  15. - [Custom Social Connections](/extensions/custom-social-extensions): manage custom social connections in an easy way.
  16. - [Auth0 Management API Webhooks](/extensions/management-api-webhooks): webhooks definition for the Auth0 Management API; goes through the audit logs and calls the appropriate webhook for specific events.
  17. - [Auth0 AD/LDAP Connector Health Monitor](/extensions/adldap-connector): exposes endpoint for AD/LDAP connections monitoring.
  18. - [Auth0 Logs to Application Insight](/extensions/application-insight): exports Auth0 logs to Application Insights.
  19. - [Auth0 Logs to Azure Blob Storage](/extensions/azure-blob-storage): exports Auth0 logs to Azure Blob Storage
  20. - [Auth0 Authentication API Webhooks](/extensions/authentication-api-webhooks): webhooks definition for the Auth0 Authentication API; goes through the audit logs and calls the appropriate webhook for specific events.
  21. - [Auth0 Logs to Loggly](/extensions/loggly): exports Auth0 logs to Loggly.
  22. - [Auth0 Logs to Papertrail](/extensions/papertrail): exports Auth0 logs to Papertrail.
  23. - [Users Import / Export](/extensions/user-import-export): import or export users.
  24. - [Auth0 Logs to Sumo Logic](/extensions/sumologic): export Auth0 logs to Sumo Logic.
  25. - [Auth0 Logs to Splunk](/extensions/splunk): export Auth0 logs to Splunk.
  26. - [Auth0 Logs to Logstash](/extensions/logstash): export Auth0 logs to Logstash.
  27. - [Auth0 Logs to Mixpanel](/extensions/mixpanel): export Auth0 logs to Mixpanel.
  28. - [Real-time Webtask Logs](/extensions/realtime-webtask-logs): allows browser-based access to real-time webtask logs.
  29. - [Auth0 Logs to Logentries](/extensions/logentries): export Auth0 logs to Logentries.
  30. - [GitHub Deployments](/extensions/github-deploy): deploy rules and database connections from GitHub to Auth0.
  31. ## Creating Your Own Extension
  32. If you would like to [create your own extension](/extensions/custom-extensions), Auth0 provides the following sample code to help you get started:
  33. - [Auth0 Extension Boilerplate](https://github.com/auth0/auth0-extension-boilerplate)
  34. - [Auth0 Extension with API Boilerplate](https://github.com/auth0/auth0-extension-boilerplate-with-api)
  35. - [Auth0 Extension with React Boilerplate](https://github.com/auth0/auth0-extension-boilerplate-with-react)
  36. Alternatively, you may follow the Development Instructions provided via the "New Extension" window that appears when you click on the "+ Extension" button. This allows you to create your own extension using the command line.
  37. For instructions on how to install your custom extension, please see [Installing a Custom Extension](/extensions/custom-extensions#installing-a-custom-extension).