Book Image

Building Hybrid Clouds with Azure Stack

Book Image

Building Hybrid Clouds with Azure Stack

Overview of this book

Azure Stack is all about creating fewer gaps between on-premise and public cloud application deployment. Azure Stack is the logical progression of Microsoft Cloud Services to create a true hybrid cloud-ready application. This book provides an introduction to Azure Stack and the cloud-first approach. Starting with an introduction to the architecture of Azure Stack, the book will help you plan and deploy your Azure Stack. Next, you will learn about the network and storage options in Azure Stack and you'll create your own private cloud solution. Finally, you will understand how to integrate public cloud using the third-party resource provider. After reading the book, you will have a good understanding of the end-to-end process of designing, offering, and supporting cloud solutions for enterprises or service providers.
Table of Contents (19 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

VM extensions


VM extension is some kind of script that will run after the ARM deployment has finished. You can set up a VM extension in the ARM Portal, depending on the operating system, as follows.

Windows VM extensions

A Windows VM provides three different solutions:

  • Custom Scripts Extension
  • Microsoft Antimalware extension
  • PowerShell Desired State Configuration extension

In the following screenshot the three different resources are illustrated:

Microsoft Antimalware extensions

The easiest VM extension is one that installs a Microsoft Antimalware extension:

With Microsoft Antimalware, you will get a valid solution for antimalware and antivirus on your Windows Server instance that provides an industrial standard with valid antimalware and antivirus patterns. You will not have to use any other third-party vendor solution for it. As of today, with Azure Stack, it is only available for Windows VMs.

Custom Script Extension

A custom script is anything that could be executed inside a VM:

As you can see, a...