We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Was hoping we could add the ability to specify Azure Subscription and Key Vault Name in which the variable group can pull from.
resource "azuredevops_project" "project" { project_name = "Test Project" } resource "azuredevops_variable_group" "variablegroup" { project_id = azuredevops_project.project.id name = "Test Variable Group" description = "Test Variable Group Description" allow_access = true key_vault = { subscription_id = "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx" name = "mykeyvault" } variable { name = "key" value = "value" } variable { name = "Account Password" value = "p@ssword123" is_secret = true } }
The text was updated successfully, but these errors were encountered:
I believe that this feature is planned. https://github.com/terraform-providers/terraform-provider-azuredevops/issues/138#issuecomment-670392497
Sorry, something went wrong.
I believe that this feature is planned. #138 (comment)
I read that issue and failed to see that comment for some reason, thank you for linking that.
Closing this as its already being worked on.
No branches or pull requests
Community Note
Description
Was hoping we could add the ability to specify Azure Subscription and Key Vault Name in which the variable group can pull from.
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: