Created
May 21, 2019 16:03
-
-
Save mikaelkrief/1de36ef1fe9afc262253e8500b5b245a to your computer and use it in GitHub Desktop.
This file contains 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
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