Book Image

Azure Strategy and Implementation Guide - Third Edition

By : Peter De Tender, Greg Leonardo, Jason Milgram
Book Image

Azure Strategy and Implementation Guide - Third Edition

By: Peter De Tender, Greg Leonardo, Jason Milgram

Overview of this book

Microsoft Azure is a powerful cloud computing platform that offers a multitude of services and capabilities for organizations of any size moving to a cloud strategy. Azure Strategy and Implementation Guide Third Edition encapsulates the entire spectrum of measures involved in Azure deployment that includes understanding Azure fundamentals, choosing a suitable cloud architecture, building on design principles, becoming familiar with Azure DevOps, and learning best practices for optimization and management. The book begins by introducing you to the Azure cloud platform and demonstrating the substantial scope of digital transformation and innovation that can be achieved by leveraging Azure’s capabilities. The guide further acquaints you with practical insights on application modernization, Azure Infrastructure as a Service (IaaS) deployment, infrastructure management, key application architectures, best practices of Azure DevOps, and Azure automation. By the end of this book, you will be proficient in driving Azure operations right from the planning and cloud migration stage to cost management and troubleshooting.
Table of Contents (5 chapters)

Deploying and managing services

First, it is important to understand that resources in Azure are "deployed." This is the provisioning process for Azure, but it is not typically referred to as provisioning. With Azure, there was a transition from a developmental approach to the deployment of resources, which is a JSON representation of the resource that is being deployed. This is referred to as Infrastructure as Code or IaC and is handled through a system called Azure Resource Manager (ARM) templates.

ARM templates are the deployment and management service for Azure. They are the management layer that provides the ability to create, update, and delete resources, as well as the desired state of the resource's configuration or DSC. The ARM template system can be used through the portal, PowerShell, Azure CLI, Rest APIs, or Client SDKs, as you can see in Figure 10:

ARM Templates is the deployment and management service for Azure. It is the management layer that provides the ability to create, update, and delete resources, as well as, the desired state of the resource's configuration or DSC. The ARM template system can be used through the portal, PowerShell, Azure CLI, Rest APIs, or Client SDKs.

Figure 10: Azure Resource Manager simplified process

As you can see, the deployment system...