alrios-ms
alrios-ms
Hi @ChallaSailendra, Looking at the logs the issue seems to be similar as the one described by @danielluo-msft for the code coverage. You might need to update the value of...
Hi @ChallaSailendra , I see you renamed the AzureTableBackup function, my intention was just to let you know the function has been renamed in the latest version, manually renaming it...
Hi @ChallaSailendra, Most likely the keyvault was not created, as I mentioned earlier, the default environment names 'int', 'ua', 'prodv2' must not be reused since some resources like KeyVaults have...
Hi @ChallaSailendra Based on your logs, SecurityGroup function is failing when calling MembershipAggregator function, it is getting a 401 (Unauthorized) code, for context when SecurityGroup calls the MembershipAggregator function, a...
Hi @slavoslavo, TeamsChannel has been renamed to TeamsChannelMembershipObtainer. If your [vsts-cicd.yml](https://github.com/microsoftgraph/group-membership-management/blob/main/vsts-cicd.yml) still refers to TeamsChannel, you might want to get the latest version of the code. The deployment process uses...
Hi @slavoslavo, Yes, you can remove TeamsChannel from vsts-cicd.yml, that would prevent it from being deployed. In your vsts-cicd.yml search for 'TeamsChannel' and remove it from the file, for instance:...
Hi @slavoslavo, The condition for these stages expects the branch name to be 'develop', if you are using another name you might need to adjust the condition for that. NonProd_webapp_env...
Hi @slavoslavo Sorry for the late response. Looks like there is a missing parameter in the file that that deploys the web app. [deploy-webapp]( https://github.com/microsoftgraph/group-membership-management/blob/53fe1ccfeb55990dfe1c3ab57f8c79313f17639a/yaml/deploy-webapp.yml#L21) overrideParameters: -location "${{parameters.location}}" -solutionAbbreviation "${{parameters.solutionAbbreviation}}"...
Would you mind trying replacing your deploy-webapp.yml with this one [deploy-webapp.txt](https://github.com/microsoftgraph/group-membership-management/files/15314951/deploy-webapp.txt) Rename from txt to yml.
Hello, The previous file I shared was using an old format to name the variables, variableName_environment, that’s why the UI deployment stage couldn’t find the pipeline variable ‘REACT_APP_AAD_API_APP_CLIENT_ID_poc’, I have...