layout | page_title | description |
---|---|---|
azuredevops |
Provider: Azure DevOps |
The Azure DevOps provider is used to interact with Azure DevOps organization resources. |
The Azure DevOps provider can be used to configure Azure DevOps project in Microsoft Azure using Azure DevOps Service REST API
Use the navigation to the left to read about the available resources.
Interested in the provider's latest features, or want to make sure you're up to date? Check out the changelog for version information and release notes.
provider "azuredevops" {
version = ">= 0.0.1"
}
resource "azuredevops_project" "project" {
project_name = "Project Name"
description = "Project Description"
}
The following arguments are supported in the provider
block:
-
org_service_url
- (Required) This is the Azure DevOps organization url. It can also be sourced from theAZDO_ORG_SERVICE_URL
environment variable. -
personal_access_token
- (Required) This is the Azure DevOps organization personal access token. The account corresponding to the token will need "owner" privileges for this organization. It can also be sourced from theAZDO_PERSONAL_ACCESS_TOKEN
environment variable.