1. Packages
  2. DNSimple
  3. Installation & Configuration
DNSimple v3.4.2 published on Thursday, Mar 21, 2024 by Pulumi

DNSimple: Installation & Configuration

dnsimple logo
DNSimple v3.4.2 published on Thursday, Mar 21, 2024 by Pulumi

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

    Installation

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

    Configuring Credentials

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

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

      $ pulumi config set dnsimple:token XXXXXXXXXXXXXX --secret
      $ pulumi config set dnsimple:account YYYYYYYYYYYYYY --secret
      

    Remember to pass --secret when setting dnsimple:token and dnsimple:account so that they are properly encrypted. The complete list of configuration parameters is in the DNSimple provider README.

    dnsimple logo
    DNSimple v3.4.2 published on Thursday, Mar 21, 2024 by Pulumi