Skip to content

Instantly share code, notes, and snippets.

@mikaelkrief
Created May 21, 2019 16:03
Show Gist options
  • Save mikaelkrief/1de36ef1fe9afc262253e8500b5b245a to your computer and use it in GitHub Desktop.
Save mikaelkrief/1de36ef1fe9afc262253e8500b5b245a to your computer and use it in GitHub Desktop.
resource "azuredevops_build_definition" "build-def1" {
name = "build-def-CI"
project_id = "${azuredevops_project.project.name}"
description = "It' definition created by Terraform"
repository {
name = "${azuredevops_project.project.name}"
type = "TfsGit"
branch = "master"
}
queue {
pool_name = "Hosted VS2017"
}
designer_phase {
name = "phase1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment