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

Chapter 12. Infrastructure as Code – Azure Functions and Other Future Scenarios

In the previous chapters of this book, we talked about virtual machines and PaaS solutions; nevertheless, it was all about how many resources we need for a specific service and how we host these services (single tenant or multi-tenant). In regard to the cloud technology, we could go one step forward: we do not talk about resources; we just talk about code that is being run somewhere in the cloud and we do not care about the services on which it is running and how many resources it consumes. We just care about the results we are getting from it. This is the concept of Infrastructure as Code (IAC), or serverless cloud computing.

Microsoft Azure supports these service too, and so does Microsoft Azure Stack. In this chapter, we will talk about the following:

  • A simple hello world Azure Stack Function
  • Common scenarios for Azure Functions
  • Possible Azure Stack future features

Note

The technical requirement for being able to...