Book Image

Implementing Azure Solutions - Second Edition

By : Florian Klaffenbach, Markus Klein, Sebastian Hoppe, Oliver Michalski, Jan-Henrik Damaschke
Book Image

Implementing Azure Solutions - Second Edition

By: Florian Klaffenbach, Markus Klein, Sebastian Hoppe, Oliver Michalski, Jan-Henrik Damaschke

Overview of this book

<p>Microsoft Azure offers numerous solutions that can shape the future of any business. However, the major challenge that architects and administrators face lies in implementing these solutions. </p><p>Implementing Azure Solutions helps you overcome this challenge by enabling you to implement Azure Solutions effectively. The book begins by guiding you in choosing the backend structure for your solutions. You will then work with the Azure toolkit and learn how to use Azure Managed Apps to share your solutions with the Azure service catalog. The book then focuses on various implementation techniques and best practices such as implementing Azure Cloud Services by configuring, deploying, and managing cloud services. As you progress through the chapters, you’ll learn how to work with Azure-managed Kubernetes and Azure Container Services. </p><p>By the end of the book, you will be able to build robust cloud solutions on Azure.</p>
Table of Contents (14 chapters)

Chapter 2: Azure Resource Manager and Tools

  1. ARM templates are written in JavaScript Object Notation (JSON).
  2. ARM templates are declarative and define how a resource should look. ARM deploys these resources based on the definition.
  3. Azure resource locks are a way to mark an Azure resource as read only or do not delete.
  4. Everything that needs to be configured after a resource has been deployed (for example, setting user profile options) cannot be done with ARM templates. Therefore, PowerShell desired state configuration (DSC) is an option.
  5. Custom ARM templates can be deployed using Azure CLI, PowerShell, or Azure Portal using the custom deployment feature.
  6. The tools used to create ARM templates are:
    • Azure Portal
    • Visual Studio
    • Any other JSON editor
    • Simple Notepad
  7.  ARM is a basic service in Azure that is available globally. Setting the region for deploying a resource is an option for the deployment process itself.
  8. As soon as a cloud service is based on Microsoft...