Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created September 14, 2020 07:57
Show Gist options
  • Select an option

  • Save goyalmohit/6287833aa6d41eaac49aa970a6a12e1b to your computer and use it in GitHub Desktop.

Select an option

Save goyalmohit/6287833aa6d41eaac49aa970a6a12e1b to your computer and use it in GitHub Desktop.
# 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