Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Azure Resource Manager Templates Quick Start Guide

You're reading from   Azure Resource Manager Templates Quick Start Guide Create, deploy, and manage Azure resources with ARM templates using best practices

Arrow left icon
Product type Paperback
Published in Feb 2019
Publisher Packt
ISBN-13 9781789803235
Length 234 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Ritesh Modi Ritesh Modi
Author Profile Icon Ritesh Modi
Ritesh Modi
Daniel Andres Pelaez Lopez Daniel Andres Pelaez Lopez
Author Profile Icon Daniel Andres Pelaez Lopez
Daniel Andres Pelaez Lopez
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. Section 1: ARM Template Foundational Skills
2. Infrastructure as Code and Configuration Management FREE CHAPTER 3. Azure Resource Manager Templates 4. Understanding Core Elements of ARM Templates 5. Advance Template Features 6. Section 2: ARM Template Advanced Concepts
7. IaaS Solutions Using Templates 8. Unit Testing ARM Templates 9. Design Patterns 10. ARM Template Best Practices 11. Other Books You May Enjoy

Retrieving outputs from ARM templates

Azure PowerShell provides the cmdlet Get-AzureRmResourceGroupDeployment and accepts the name of the deployment, along with name of the resource group. Using this cmdlet, we can retrieve the output of any past deployment. It is important to know the name of the deployment and the resource group name before this cmdlet can be used. It expects these two parameters for returning outputs of the past deployment.

Let's execute this command to retrieve the deployment outputs, using the same name used during the deployment of an ARM template. Notice that test01 was the resource group to which we deployed the previous ARM template and the name of the deployment was csa01:

Get-AzureRmResourceGroupDeployment -ResourceGroupName test01 -Name csa01 -Verbose

The output from this command is quite verbose, and it is not shown completely, for the sake of...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime