1. Packages
  2. Sumo Logic
  3. Installation & Configuration
Sumo Logic v0.20.3 published on Wednesday, Mar 6, 2024 by Pulumi

Sumo Logic: Installation & Configuration

sumologic logo
Sumo Logic v0.20.3 published on Wednesday, Mar 6, 2024 by Pulumi

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

    Installation

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

    Configuring Credentials

    Pulumi relies on the Sumo Logic SDK to authenticate requests from your computer to Sumo Logic. Your credentials are never sent to pulumi.com. The Pulumi Sumo Logic Provider needs to be configured with Sumo Logic 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 for SUMOLOGIC_ACCESSID, SUMOLOGIC_ACCESSKEY and SUMOLOGIC_ENVIRONMENT:

      $ export SUMOLOGIC_ACCESSID=XXXXXXXXXXXXXX
      $ export SUMOLOGIC_ACCESSKEY=YYYYYYYYYYYYYY
      $ export SUMOLOGIC_ENVIRONMENT=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 sumologic:accessId XXXXXXXXXXXXXX --secret
      $ pulumi config set sumologic:accessKey YYYYYYYYYYYYYY --secret
      $ pulumi config set sumologic:environment ZZZZZZZZZZZZZZ
      

    Remember to pass --secret when setting sumologic:accessId and sumologic:accessKey so that they are properly encrypted. The complete list of configuration parameters is in the Sumo Logic provider README.

    sumologic logo
    Sumo Logic v0.20.3 published on Wednesday, Mar 6, 2024 by Pulumi