Created
September 9, 2020 01:48
-
-
Save goyalmohit/0c059845784109cf1d1bcfa9415bbcf5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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