Presentation is loading. Please wait.

Presentation is loading. Please wait.

Azure ARM Templates CLD321 Aaron Saikovski

Similar presentations


Presentation on theme: "Azure ARM Templates CLD321 Aaron Saikovski"— Presentation transcript:

1 Azure ARM Templates - 101 CLD321 Aaron Saikovski
Microsoft Ignite 2016 12/12/2017 6:34 AM Azure ARM Templates - 101 CLD321 Aaron Saikovski Specialist Solution Architect – Microsoft Cloud Technologies Rackspace Australia © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

2 Agenda Intros History Anatomy Demo – “Hello World”
12/12/2017 6:34 AM Agenda Intros History Anatomy Demo – “Hello World” Building and deploying Tips and Tricks Demo – Deploying a complete stack Questions © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

3 12/12/2017 6:34 AM About me © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

4 12/12/2017 6:34 AM Some History © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

5 History Microsoft Ignite 2016 12/12/2017 6:34 AM
© 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

6 12/12/2017 6:34 AM © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

7 Anatomy of an ARM template
12/12/2017 6:34 AM Anatomy of an ARM template © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

8 Blank ARM Template { "$schema": "http://schema.management.azure.com/
12/12/2017 6:34 AM { "$schema": " schemas/ /deploymentTemplate.json#", "contentVersion": "", "parameters": { }, "variables": { }, "resources": [ ], "outputs": { } } © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

9 Blank ARM Template – Parameter File
"parameters": { "<parameter-name>" : { "type" : "<type-of-parameter-value>", "defaultValue": "<default-value-of-parameter>", "allowedValues": [ "<array-of-allowed-values>" ], "minValue": <minimum-value-for-int>, "maxValue": <maximum-value-for-int>, "minLength": <minimum-length-for-string-or-array>, "maxLength": <maximum-length-for-string-or-array-parameters>, "metadata": { "description": "<description-of-the parameter>" } © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

10 Demo “HelloWorld” ARM Template Deployment Microsoft Ignite 2016
12/12/2017 6:34 AM Demo “HelloWorld” ARM Template Deployment © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

11 Building and Deploying
12/12/2017 6:34 AM Building and Deploying © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

12 Building your own templates
12/12/2017 6:34 AM Building your own templates Active Online community Shared repositories -> GitHub, Quickstart Visual Studio tools help get you started Seek out an expert at Microsoft Ignite 2017  Useful Links: © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

13

14 Visual Studio Tools JSON Outline view Ready to go templates
12/12/2017 6:34 AM JSON Outline view Ready to go templates © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

15 It’s free and cross platform!
Visual Studio Code 12/12/2017 6:34 AM It’s free and cross platform! © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

16 Building your own templates
12/12/2017 6:34 AM Building your own templates ARM templates -> deploy -> redeploy Source control and versioning Deploy via Visual Studio or via PowerShell New-AzureRmResourceGroupDeployment -Name ((Get-ChildItem $templateFile).BaseName + '-' + ((Get-Date).ToUniversalTime()).ToString('MMdd-HHmm')) -ResourceGroupName $ResourceGroupName -TemplateFile $templateFile -TemplateParameterFile $parametersFile © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

17 Deploying an ARM template via Visual Studio
12/12/2017 6:34 AM © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

18 Recap Lots of samples available Tooling is 1st class
Microsoft Ignite 2016 12/12/2017 6:34 AM Recap Lots of samples available Tooling is 1st class Lots of options for deployment Start with existing and modify to suit Incremental deployment model © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

19 12/12/2017 6:34 AM Tips and Tricks © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

20 Tips and Tricks ARM -> Resource Group ->Resources
12/12/2017 6:34 AM Tips and Tricks ARM -> Resource Group ->Resources Resource Location -> Different to Resource Group Standard Storage -> Premium Keep SDK and tools up to date © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

21 Tips and Tricks..cont Use JSON Lint (http://jsonlint.com/)
12/12/2017 6:34 AM Tips and Tricks..cont Use JSON Lint ( Layer templates Set correct subscription $activesub = Get-AzureRmSubscription -SubscriptionId 'XXX-XXX-XXX-XXX' -TenantId 'XXX-XXX-XXX-XXX' $activesub | Set-AzureRmContext © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

22 Tips and Tricks..cont 12/12/2017 6:34 AM $templateFile = "$basepath\storage-account\storageaccount.json" $params New-AzureRmResourceGroupDeployment -Name ((Get-ChildItem $templateFile).BaseName + '-' + ((Get-Date).ToUniversalTime()).ToString('MMdd-HHmm')) ` -ResourceGroupName $ResourceGroupName ` -TemplateFile $templateFile ` -TemplateParameterObject $params ` -Force © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

23 Useful Links Visual Studio Code - https://code.visualstudio.com/
12/12/2017 6:34 AM Useful Links Visual Studio Code - Git Extensions - Azure Storage Explorer: Azure Resource Explorer: Azure Quickstart Templates: Best Practices Guide: ARM Authoring Guide: © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

24 Recap Resources deployed to different region than Resource Group
Microsoft Ignite 2016 12/12/2017 6:34 AM Recap Resources deployed to different region than Resource Group Keep tools up to date JSONLint fix JSON syntax -TemplateParameterObject via PowerShell © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

25 Demo Building a complete stack Microsoft Ignite 2016
12/12/2017 6:34 AM Demo Building a complete stack © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

26 Demo – Deploy a Single VM
12/12/2017 6:34 AM © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

27 Recap Layered ARM Deployment Simple VM Deployment
Microsoft Ignite 2016 12/12/2017 6:34 AM Recap Layered ARM Deployment Simple VM Deployment Incremental ARM Model Mix of Visual Studio and PowerShell Change VM Size via ARM Resource dependencies © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

28 Session Recap Intros History Anatomy Demo – “Hello World”
12/12/2017 6:34 AM Session Recap Intros History Anatomy Demo – “Hello World” Building and deploying Tips and Tricks Demo – Deploying a complete stack © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

29 Questions Microsoft Ignite 2016 12/12/2017 6:34 AM
© 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

30 Continue your Ignite learning path
12/12/2017 6:34 AM Continue your Ignite learning path Visit Channel 9 to access a wide range of Microsoft training and event recordings Head to the TechNet Eval Centre to download trials of the latest Microsoft products Visit Microsoft Virtual Academy for free online training visit © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

31 Win a Spark After Dark drone pilot pass by completing your session evaluation ASAP  #MSAUIGNITE

32 12/12/2017 6:34 AM Thank you Chat with me in the Speaker Lounge Find me or or at the Rackspace booth © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.


Download ppt "Azure ARM Templates CLD321 Aaron Saikovski"

Similar presentations


Ads by Google