skip to Main Content

Troubleshooting Inconsistent Work Item Retrieval in Azure DevOps Release API

I have an Azure DevOps API for fetching the releases between the start date and the end date https://vsrm.dev.azure.com/${organization}/${project}/_apis/release/releases?minCreatedTime=${startDate}&maxCreatedTime=${endDate}&api-version=6.0, startDate : 2024-05-27, endDate : 2024-07-11 Basically, when I run this API it gives the releases which contain the release id…

VIEW QUESTION

Azure – how to variablize the resource attribute as input value in terraform

I am trying to use below code data "azurerm_resource_group" "rg_tst_na" { name = "test1" } data "azurerm_resource_group" "rg_dev_na" { name = "test2" } resource "azurerm_role_assignment" "test_role_assign" { for_each = var.test_role_assignment principal_id = azurerm_user_assigned_identity.test_setup["${each.key}_${each.value}"].principal_id # this is created as separate resource…

VIEW QUESTION
Back To Top
Search