1. Packages
  2. AzureDevOps
  3. Installation & Configuration
Azure DevOps v3.0.0 published on Friday, Mar 15, 2024 by Pulumi

AzureDevOps: Installation & Configuration

azuredevops logo
Azure DevOps v3.0.0 published on Friday, Mar 15, 2024 by Pulumi

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

    Installation

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

    Configuring Credentials

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

      $ export AZDO_ORG_SERVICE_URL=XXXXXXXXXXXXXX
      $ export AZDO_PERSONAL_ACCESS_TOKEN=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 azuredevops:orgServiceUrl XXXXXXXXXXXXXX --secret
      $ pulumi config set azuredevops:personalAccessToken YYYYYYYYYYYYYY --secret
      

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

    azuredevops logo
    Azure DevOps v3.0.0 published on Friday, Mar 15, 2024 by Pulumi