1. Packages
  2. DigitalOcean
  3. Installation & Configuration
DigitalOcean v4.27.0 published on Wednesday, Mar 13, 2024 by Pulumi

DigitalOcean: Installation & Configuration

digitalocean logo
DigitalOcean v4.27.0 published on Wednesday, Mar 13, 2024 by Pulumi

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

    Installation

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

    Configuring Credentials

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

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

      $ pulumi config set digitalocean:token XXXXXXXXXXXXXX --secret
      

    Remember to pass --secret when setting token so that it is properly encrypted.

    Spaces API Credentials

    To create Space Buckets with Pulumi, you will need an access key for the Spaces API. Once you’ve created a Spaces access key, you can set them in one of two ways for Pulumi:

    1. Set them as environment variables:

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

      $ pulumi config set digitalocean:spaces_access_id XXXXXXXXXXXXXX
      $ pulumi config set digitalocean:spaces_secret_key XXXXXXXXXXXXXX --secret
      

    Remember to pass --secret when setting spaces_secret_key so that it is properly encrypted.

    digitalocean logo
    DigitalOcean v4.27.0 published on Wednesday, Mar 13, 2024 by Pulumi