Overview: Azure Apps service has a feature which enables you to restrict user access to a web applicationĀ using IP restriction feature.You can allow or deny the access to a set of IPs to your web app, using this feature. You can find this option by clicking on Networking >Configure Access Restrictions . By default, it…
Tag: azure
Azure DevOps : Build and publish your project to userdefined folder using MSBuild task in build pipeline
Overview : In most of the cases the solution of your application contains more than one project for example one or more web app, function app, WCF service, web API. When you build the solution you will get the predefined folder structure in the artifact. But sometime you might need to publish the different project…
Azure Resource Manager and ARM templates
Azure Resource Manager: Azure Resource Manager is the deployment and management service for Azure.You can think of it as a management layer that enables you to create, update, and delete and organize the resources in Azure subscription. You can create azure resources using one of the following methods. Azure portal Azure powershell Azure CLI Rest…
Using Azure Key Vault in ASP.NET web project
Overview: When you are developing an application, your application may need to connect to multiple services by passing some connection information. Ideally every service will be protected in their own way. For example: Database. Database uses username and password to authenticate its users. So the application needs to have the username and password to securely…