Azure DevOps Source Plugin
Latest: v1.1.3The CloudQuery Azure DevOps plugin reads information from your Azure DevOps account and loads it into any supported CloudQuery destination (e.g. PostgreSQL, Snowflake, BigQuery).
Configuration
This example syncs from Azure DevOps to a Postgres destination. The (top level) source spec section is described in the Source Spec Reference.
kind: source
# Common source-plugin configuration
spec:
name: azuredevops
path: cloudquery/azuredevops
version: "v1.1.3"
tables: ["*"]
destinations: ["postgresql"]
# Azure DevOps specific configuration
spec:
personal_access_token: "${AZURE_DEVOPS_PERSONAL_ACCESS_TOKEN}"
organization_url: "${AZURE_DEVOPS_ORGANIZATION_URL}"
For more information on downloading, installing and running the CloudQuery CLI, see the Quickstart guide.
Azure DevOps Spec
This is the (nested) spec used by the Azure DevOps source plugin.
-
personal_access_token
(string, required):An API token to access Azure DevOps resources. This can be obtained by creating an API token (opens in a new tab). It's recommended to allow only read access to the resources you need to sync.
-
organization_url
([]string, required):The Azure DevOps organization URL. Should be in the format
https://dev.azure.com/{organization}
.