1. Packages
  2. Pagerduty Provider
  3. Installation & Configuration
PagerDuty v4.23.0 published on Wednesday, Apr 16, 2025 by Pulumi

Pagerduty Provider: Installation & Configuration

PagerDuty v4.23.0 published on Wednesday, Apr 16, 2025 by Pulumi

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

Installation

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

Configuring Credentials

Pulumi relies on the PagerDuty SDK to authenticate requests from your computer to PagerDuty. Your credentials are never sent to pulumi.com. The Pulumi PagerDuty Provider needs to be configured with PagerDuty 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 variable PAGERDUTY_TOKEN:

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

    $ pulumi config set pagerduty:token XXXXXXXXXXXXXX --secret
    
    Copy

Remember to pass --secret when setting pagerduty:token so that it is properly encrypted. The complete list of configuration parameters is in the PagerDuty provider README.

PagerDuty v4.23.0 published on Wednesday, Apr 16, 2025 by Pulumi