1. Packages
  2. Auth0
  3. Installation & Configuration
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

Auth0: Installation & Configuration

auth0 logo
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

    The Pulumi Auth0 provider uses the Auth0 SDK to manage and provision resources.

    Installation

    The Auth0 provider is available as a package in all Pulumi languages:

    Configuring Credentials

    Pulumi relies on the Auth0 SDK to authenticate requests from your computer to Auth0. Your credentials are never sent to pulumi.com. The Pulumi Auth0 Provider needs to be configured with Auth0 credentials before it can be used to create resources. Once the credentials are obtained, there are two ways to communicate your authorization tokens to Pulumi:

    1. Set the environment variables AUTH0_DOMAIN, AUTH0_CLIENT_ID and AUTH0_CLIENT_SECRET:

      $ export AUTH0_DOMAIN=XXXXXXXXXXXXXX
      $ export AUTH0_CLIENT_ID=YYYYYYYYYYYYYY
      $ export AUTH0_CLIENT_SECRET=ZZZZZZZZZZZZZZ
      
    2. Set them using configuration, if you prefer that they be stored alongside your Pulumi stack for easy multi-user access:

      $ pulumi config set auth0:domain XXXXXXXXXXXXXX
      $ pulumi config set auth0:client_id YYYYYYYYYYYYYY --secret
      $ pulumi config set auth0:client_secret ZZZZZZZZZZZZZZ --secret
      

    Remember to pass --secret when setting auth0:client_id and auth0:client_secret so that it is properly encrypted. The complete list of configuration parameters is in the Auth0 Provider README.

    auth0 logo
    Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi