diff options
| author | Nicholas M. Iodice <niiodice@microsoft.com> | 2019-10-08 14:31:33 -0400 |
|---|---|---|
| committer | Stephen Henderson <stephen@bluegood.com> | 2019-10-08 13:31:33 -0500 |
| commit | 0fccde45e297d3a6cc27b9893cbc7ed6db67119b (patch) | |
| tree | 6ef871ad6370faf280dcbd153a8699b4ee1bad4c /README.md | |
| parent | c60f79a76d5026fb7e46259df0581fc804791cf5 (diff) | |
Refactor the `resource_build_definition.go` to follow expand/flatten (#77)
pattern recommended by Hashicorp.
This change also exposes the agent pool name as a configurable property
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -38,8 +38,9 @@ resource "azuredevops_project" "project" { } resource "azuredevops_build_definition" "build_definition" { - project_id = azuredevops_project.project.id - name = "Test Pipeline" + project_id = azuredevops_project.project.id + name = "Test Pipeline" + agent_pool_name = "Hosted Ubuntu 1604" repository { repo_type = "GitHub" |
