├── .gitattributes ├── .gitignore ├── Epub └── Azure_for_Architects.epub ├── Mobi └── Azure_for_Architects.mobi └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /Epub/Azure_for_Architects.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-for-Architects/447120400548bc29c4922510ad34b388f8d62a27/Epub/Azure_for_Architects.epub -------------------------------------------------------------------------------- /Mobi/Azure_for_Architects.mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-for-Architects/447120400548bc29c4922510ad34b388f8d62a27/Mobi/Azure_for_Architects.mobi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # Azure for Architects 5 | 6 | Azure for Architects 7 | 8 | This is the code repository for [Azure for Architects](https://www.packtpub.com/virtualization-and-cloud/azure-architects?utm_source=github&utm_medium=repository&utm_campaign=9781788397391), published by Packt. 9 | 10 | **Implementing cloud design, DevOps, IoT, and serverless solutions on your public cloud** 11 | 12 | ## What is this book about? 13 | Over the years, Azure cloud services has grown quickly, and the number of organizations adopting Azure for their cloud services is also gradually increasing. Leading industry giants are finding that Azure fulfills their extensive cloud requirements. 14 | This guide leads you through each of the major decision points that you'll face while architecting an Azure private cloud for your organization. 15 | 16 | This book covers the following exciting features: 17 | * Familiarize yourself with the components of the Azure Cloud platform 18 | * Understand the cloud design patterns 19 | * Use enterprise security guidelines for your Azure deployment 20 | * Design and implement Serverless solutions 21 | * See Cloud architecture and the deployment pipeline 22 | * Understand cost management for Azure solutions 23 | 24 | If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1788397398) today! 25 | 26 | https://www.packtpub.com/ 28 | 29 | **Following is what you need for this book:** 30 | This book assumes a basic level of knowledge on cloud computing and Azure. All you need is a valid Azure subscription and internet connectivity to use this book. A Windows 10 operating system having 4 GB of RAM is sufficient for using Powershell and executing ARM templates. 31 | 32 | 33 | We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://www.packtpub.com/sites/default/files/downloads/AzureforArchitects_ColorImages.pdf). 34 | 35 | 36 | ## Get to Know the Author 37 | **Ritesh Modi** 38 | is a former Microsoft senior technology evangelist currently working as a principal consultant for Infront Consulting Group. He is an architect, a senior evangelist, cloud architect, published author, speaker, and a known leader for his contributions towards datacenter, Azure, bots, blockchain, cognitive services, DevOps, artificial intelligence, and automation. He is the author of multiple books. Developing Bots using Bot Framework and DevOps with Windows Server 2016 are some of his recent books. He has also coauthored another book, titled Introducing Windows Server 2016 Technical Preview, along with the Windows Server team. 39 | 40 | He has spoken at more than 15 conferences, including TechEd and the PowerShell Asia Conference, and is a published author for MSDN magazine. He has more than a decade of experience in building and deploying enterprise solutions for customers, and more than 25 technical certifications. His interests and hobbies include writing books, playing with his daughter, watching movies, and continuing to learn new technologies. His Twitter handle is @automationnext. 41 | 42 | Ritesh currently lives in Hyderabad, India. 43 | 44 | ## Other book by the author 45 | * [DevOps with Windows Server 2016](https://www.packtpub.com/networking-and-servers/devops-windows-server-2016?utm_source=github&utm_medium=repository&utm_campaign=9781786468550) 46 | 47 | ### Suggestions and Feedback 48 | [Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions. 49 | ### Download a free PDF 50 | 51 | If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.
52 |

https://packt.link/free-ebook/9781788397391

--------------------------------------------------------------------------------