Skip to content

Commit ceacefb

Browse files
Merge pull request #49397 from lootle1/MR74
Technical Review 1023958: Deploy to multiple Azure environments by us…
2 parents 5fb746f + 777deda commit ceacefb

13 files changed

+14
-14
lines changed

learn-pr/azure/modify-azure-resource-manager-template-reuse/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Introduction
88
description: Introduction.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/2-azure-resource-manager-functions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Add flexibility to your Azure Resource Manager template by using template functions
88
description: Discover how to work with several Azure Resource Manager functions to create useful expressions.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/3-exercise-use-functions-create-expression.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Use Azure Resource Manager functions to create expressions
88
description: Use several Azure Resource Manager functions to create an expression for the unique Azure Storage account name.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/4-azure-resource-manager-variables.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Reuse expressions by using Azure Resource Manager template variables
88
description: Discover how to work with Azure Resource Manager variables to reuse expressions in your template.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/5-exercise-use-variables-store-expressions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Use Azure Resource Manager variables to store expressions
88
description: Use an Azure Resource Manager variable to store your Azure Storage account unique name expressions for ease of reuse.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/6-azure-resource-manager-tags-parameter-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Maintain multiple Azure deployments with Azure Resource Manager template tags and parameter files
88
description: Use Azure Resource Manager template tags to identify the resources of multiple Azure deployment environments. Use Azure Resource Manager template parameter files to manage the deployment of your templates to multiple Azure deployment environments.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/7-exercise-use-tags-parameter-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Use Azure Resource Manager tags and parameter files
88
description: Update the tags on your Azure Storage account resource for better tracking, and use multiple parameter files to deploy the template to multiple Azure environments.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/8-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Knowledge check
88
description: Check your knowledge.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/9-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Summary
88
description: Summary.
9-
ms.date: 10/18/2024
9+
ms.date: 03/05/2025
1010
author: mumian
1111
ms.author: jgao
1212
ms.topic: unit

learn-pr/azure/modify-azure-resource-manager-template-reuse/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
JSON Azure Resource Manager (ARM) templates provide a few features that can help you deploy software to different environments.
22

3-
Suppose you're managing a software team that's developing an inventory system for your partner companies. Each environment you deploy software to, has different policies implemented through different Azure storage account SKUs. You have an ARM template that deploys a storage account that can be run on each environment. However, you'd like to make it easier to change inputs for each deployment environment. You decide to use variables and functions in the ARM template and parameter files for inputs.
3+
Suppose you're managing a software team that's developing an inventory system for your partner companies. Each environment you deploy software to has different policies implemented through different Azure storage account SKUs. You have an ARM template that deploys a storage account that can be run on each environment. However, you'd like to make it easier to change inputs for each deployment environment. You decide to use variables and functions in the ARM template and parameter files for inputs.
44

55
In this module, you make your ARM template reusable for different environments by adding variables and expressions via Resource Manager functions. You also add better tracking and organization of your deployed resources by using tags. Then, you complete the goal of improving the flexibility of your deployments by using parameter files.
66

0 commit comments

Comments
 (0)