Book Image

Azure for Decision Makers

By : Jack Lee, Jason Milgram, David Rendón
2 (1)
Book Image

Azure for Decision Makers

2 (1)
By: Jack Lee, Jason Milgram, David Rendón

Overview of this book

Azure for Decision Makers provides a comprehensive overview of the latest updates in cloud security, hybrid cloud and multi-cloud solutions, and cloud migration in Azure. This book is a must-have introduction to the Microsoft Azure cloud platform, demonstrating the substantial scope of digital transformation and innovation that can be achieved with Azure's capabilities. The first set of chapters will get you up to speed with Microsoft Azure's evolution before showing you how to integrate it into your existing IT infrastructure. Next, you’ll gain practical insights into application migration and modernization, focusing mainly on migration planning, implementation, and best practices. Throughout the book, you’ll get the information you need to spearhead a smooth migration and modernization process, detailing Azure infrastructure as a service (IaaS) deployment, infrastructure management, and key application architectures. The concluding chapters will help you to identify and incorporate best practices for cost optimization and management, Azure DevOps, and Azure automation. By the end of this book, you’ll have learned how to lead end-to-end Azure operations for your organization and effectively cost-optimize your processes ─ from the planning and cloud migration stage through to troubleshooting.
Table of Contents (10 chapters)
7
Next Steps

Best practices for using Azure DevOps and GitHub for IaC on Azure

Overall, using Azure DevOps or GitHub with ARM templates and Bicep files can help to improve the quality, reliability, and efficiency of your infrastructure code. These platforms provide version control, CI/CD, collaboration, security, and integration features that are essential for managing infrastructure resources at scale.

Here are some best practices for using Azure DevOps and GitHub for IaC on Azure:

  • Use version control: Manage changes to your IaC code using version control. This allows developers to track changes, collaborate with others, and revert to previous versions if necessary.
  • Use branching: Manage different stages of your IaC code, such as development, testing, and production, by using branching. This allows you to test changes before deploying them to production, reducing the risk of errors and downtime.
  • Use pull requests: With pull requests, review and approve changes to your IaC code...