Hey Guys !! Today I created a number of resources in my Azure subscription. As I was creating the KeyVaults , I realized that this was a time spending exercise for me, because I was in need to have 6 KeyVaults, and each KeyVault there were around 5 secrets. And for each KeyVault I would have to assign the required permissions. These permission were with Users of AD, Objects of Deployments (Service Principal cretead in Azure Devops), and the Azure App Services by which these Key Vaults were need to be access. Then suddenly , I though that there should be way to reduce the time of resource creation. I was aware that we can do it with the help of Azure Resource Manager templates. So I though , lets try Azure Resource Manager Template deployments. I did google and after some doing some analysis, I was able to do it very well. So Guys, I will update in todays session that How I was able to save my time with the help Azure Resource Manager Template Deploymnets. There are some step...
Hey Guys !! Today we faced an issue in one of our Web API hosted in Azure as PaaS (Web App Services). We were not getting detailed error message , we were just getting message as "Server Error in '/' Application. Runtime Error" To overcome this issue, we were in need to know the exact reason of issue, as because by default we can not get the detailed error message on web page. So, we did some changes in our web.config file. We just opened the web.config file from https://ourappiXYZ. scm.azurewebsites.net / To open the web.config file, we logged in with scm and clicked on "Debug Console" >> "CMD", as per below screen shot Then, we clicked on site folder and then "wwwroot" folder, and then edit the web.config file. In web.confif file, we added <customErrors mode="Off" /> , inside the <system.web> <system.web> <customErrors mode="Off" /> </system.web> and then we added ...