Post

What is App Service LZA and how it can help me

In the previous post we examined what a Landing Zone Accelerator is, and specifically we analyzed the Azure Container Apps LZA. Let’s continue with a brief introduction to App Service LZA aka.ms/EnterpriseScale-AppService nimbus-musings.com

The Azure App Service landing zone accelerator is an open-source collection of architectural guidance and reference implementation to accelerate deployment of Azure App Service at scale. Latest release v1.0.2 covers two different scenarios.

Scenario 1: Multi-tenant App Service Secure Baseline

This reference architecture shows how to run a web application workload on Azure App Service Plan in a secure configuration. This secure baseline follow Defense in Depth approach to protect App Service workload against cloud vulnerabilities along with additional Well-Architected Framework pillars to enable a resilient solution.

The main characteristics of this scenario are:

  • Use web apps with VNet Integration and private endpoint. No public IP to the web apps.
  • Use app service deployment slots for enabling Blue-Green Deployment scenarios
  • Secure all subnets with Network Security Groups(NSG)
  • Control egress traffic with Azure Firewall. The benefits of such a setup are numerous; to name some:
    • Data protection / data exfiltration prevention: You can prevent malware or malicious software within your environment from communicating with external command and control servers. This can help in identifying and stopping cyber threats before they cause significant damage)
    • Compliance: regulatory frameworks, such as GDPR, HIPAA, and PCI DSS, require organizations to have controls in place to monitor and restrict outbound traffic
    • Access Control: Egress control allows you to specify which applications and services can access external resources, reducing the attack surface and limiting the potential for exposure to vulnerabilities in those applications)
    • Visibility and Monitoring: Azure Firewall provides the ability to log and analyze outbound traffic. This visibility is essential for detecting suspicious activities, security incidents, and compliance auditing.
    • Centralized Management: Azure Firewall allows for centralized management of egress traffic policies, making it easier to maintain and enforce consistent security controls across the entire environment.
  • Expose web applications / APIs through an Application Reverse Proxy with WAF (Layer 7) capabilities, such as Azure Front Door Premium
  • Use Azure native PaaS services for supporting resources required by your application (i.e. Databases) which are exposed only through Private Endpoints
  • Use Azure Key Vault to securely store and access secrets, such as API keys, passwords, certificates, connection strings and other.
  • Use User Assigned Managed Identities for securing with fine grain access of the web apps to other resources (i.e. Azure Key Vault, databases etc)
  • Use Azure Bastion Services to securely connect to private Jump-boxes or self-hosted devops agents, to deploy your applications.

Multitenant App Service LZA Multitenant App Service LZA

Scenario 2: Line of Business application using internal App Service Environment v3

This scenario covers how to run a web-app workload for line of business applications on Azure App Services Environment (ASEv3), in an internal configuration. The functionality is similar to the first scenario, with the difference that all the web apps are not exposed by any resource to the public internet.

This scenario is soon to be set obsolete. The Usage of ASEv3 (or multitenant app service plan) will be integrated in the first scenario, in the form of a feature flag.

ASEv3 scenario - App Service LZA ASEv3 scenario - App Service LZA

Design areas

The architecture is considered across six key design areas. Please review them as part of your overall understanding of this landing zone accelerator.

Infrastructure as Code (IaC) options

The Reference Implementation is supporting two options:

Both implementations follow best practices, as described in the contributing document. Special care has been given to:

‘Deploy To Azure’ Button

The quickest method to deploy the LZA is to click on the “Deploy To Azure” button.

This will redirect you to the Azure Portal, where a series of steps will guide you through the customization of the deployment based on your needs. These steps include:

  • Deployment Settings (Basics): In this deployment step, fill in basic parameters such as Deployment Region and Workload Name
  • Network Settings: Adjust the default IPv4 address spaces for all required subnets if necessary.
  • Jump-Box Settings: Provide details if you need a Jumpbox VM, including VM SKU, username, and password.
  • Azure SQL Settings: In this step you select if you want an SQL Server to be deployed in the spoke Resource Group. If you select yes, then you are given the option to select the SQL Server Authentication method (Azure AD, or SQL Server local User)
  • Deployment feature flags: the final deployment by adding extra resources like Redis Cache, Bastion Service, etc., using simple true/false parameters.
This post is licensed under CC BY 4.0 by the author.