Created
September 14, 2020 07:57
-
-
Save goyalmohit/6287833aa6d41eaac49aa970a6a12e1b 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
| # Partially complete block below - will not work in isolation | |
| resource "azuredevops_variable_group" "variablegroup" { | |
| project_id = azuredevops_project.tf-example.id | |
| name = "Any CPU - Release" | |
| description = "This variable group is created using Terraform" | |
| allow_access = true | |
| variable { | |
| name = "buildPlatform" | |
| value = "Any CPU" | |
| } | |
| variable { | |
| name = "buildConfiguration" | |
| value = "Release" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment