Book Image

Hands-On Cloud Solutions with Azure

By : Greg Leonardo
Book Image

Hands-On Cloud Solutions with Azure

By: Greg Leonardo

Overview of this book

Azure provides cloud-based solutions to support your business demands. Building and running solutions on Azure will help your business maximize the return on investment and minimize the total cost of ownership. Hands-On Cloud Solutions with Azure focuses on addressing the architectural decisions that usually arise when you design or migrate a solution to Microsoft Azure. You will start by designing the building blocks of infrastructure solution on Azure, such as Azure compute, storage, and networking, followed by exploring the database options it offers. You will get to grips with designing scalable web and mobile solutions and understand where to host your Active Directory and Identity Solution. Moving on, you’ll learn how to extend DevOps to Azure. You will also beneft from some exciting services that enable extremely smooth operations and streamlined DevOps between on-premises and cloud. The book will help you to design a secure environment for your solution, on both the Cloud and hybrid. Toward the end, you’ll see how to manage and monitor cloud and hybrid solutions. By the end of this book, you will be armed with all the tools and knowledge you need to properly plan and design your solutions on Azure, whether it’s for a brand new project or migration project.
Table of Contents (16 chapters)
Title Page
Copyright and Credits
Packt Upsell
Contributors
Preface
Index

Azure blueprints


Azure blueprints is something that was added to Azure that allows architects to sketch out the design parameters for a project, which adhere to patterns, standards, and requirement within an organization. The thing that was missing since the beginning was a declarative way to orchestrate the deployment of multiple ARM templates and artifacts, such as:

  • Policy assignments
  • Role assignments
  • ARM templates
  • Resource groups

Now one of the things I had to learn was how blueprints differed from ARM templates, which for me, was ARM templates on steroids, meaning not only can you have a set of resource groups, but also roles and policy assignments.

  • Life of a blueprint, either through the Azure portal or REST API (I use PowerShell)
  • Create and edit; this functions is in draft mode and is not assigned
  • Publish, once publish is assigned, it can’t be changed
  • Create and edit new versions; to change a blueprint you create a new version
  • Publish new version; once published, a version can’t be changed
  • Delete...