Skip to content

Commit 075cb7d

Browse files
authored
Merge pull request #105280 from mumian/0224-tutorial-note
add an important note in the beginner tutorial
2 parents a5438c7 + 8277cc6 commit 075cb7d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/azure-resource-manager/templates/template-tutorial-add-resource.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tutorial - Add resource to template
33
description: Describes the steps to create your first Azure Resource Manager template. You learn about the template file syntax and how to deploy a storage account.
44
author: mumian
5-
ms.date: 10/04/2019
5+
ms.date: 02/24/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
---
@@ -21,7 +21,10 @@ You must have Visual Studio Code with the Resource Manager Tools extension, and
2121

2222
To add a storage account definition to the existing template, look at the highlighted JSON in the following example. Instead of trying to copy sections of the template, copy the whole file and replace your template with its contents.
2323

24-
Replace **{provide-unique-name}** with a unique storage account name. The storage account name must be unique across Azure. The name must have only lowercase letters or numbers. It can be no longer than 24 characters. You might try a naming pattern like using **store1** as a prefix and then adding your initials and today's date. For example, the name you use could look like **store1abc09092019**.
24+
Replace **{provide-unique-name}** with a unique storage account name.
25+
26+
> [!IMPORTANT]
27+
> The storage account name must be unique across Azure. The name must have only lowercase letters or numbers. It can be no longer than 24 characters. You might try a naming pattern like using **store1** as a prefix and then adding your initials and today's date. For example, the name you use could look like **store1abc09092019**.
2528
2629
:::code language="json" source="~/resourcemanager-templates/get-started-with-templates/add-storage/azuredeploy.json" range="1-19" highlight="5-17":::
2730

0 commit comments

Comments
 (0)