Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created September 9, 2020 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goyalmohit/0c059845784109cf1d1bcfa9415bbcf5 to your computer and use it in GitHub Desktop.
Save goyalmohit/0c059845784109cf1d1bcfa9415bbcf5 to your computer and use it in GitHub Desktop.
provider "azuredevops" {
version = ">= 0.0.1"
}
resource "azuredevops_project" "tf-example" {
project_name = "tf-example"
description = "Project deployed using Terraform"
version_control = "git"
visibility = "private"
work_item_template = "Agile"
features = {
"boards" = "enabled"
"repositories" = "enabled"
"pipelines" = "enabled"
"testplans" = "disabled"
"artifacts" = "enabled"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment