You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/deployment-manager-tutorial.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ There are two services allocated in the west U.S. and the east U.S. locations.
77
77
78
78
## Download the tutorial files
79
79
80
-
1. Download [the templates and the artifacts](https://armtutorials.blob.core.windows.net/admtutorial/ADMTutorial.zip) used by this tutorial.
80
+
1. Download [the templates and the artifacts](https://github.com/Azure/azure-docs-json-samples/raw/master/tutorial-adm/ADMTutorial.zip) used by this tutorial.
@@ -162,7 +162,7 @@ The linked template creates a storage account. The linked template can be used a
162
162
163
163
## Upload the linked template
164
164
165
-
The main template and the linked template need to be accessible from where you run the deployment. In this tutorial, you use the Cloud shell deployment method as you used in [Tutorial: Create Azure Resource Manager templates with dependent resources](./resource-manager-tutorial-create-templates-with-dependent-resources.md). The main template (azuredeploy.json) is uploaded to the shell. The linked template (linkedTemplate.json) must be shared somewhere securely. The following PowerShell script creates an Azure Storage account, uploads the template to the Storage account, and then generates a SAS token to grant limited access to the template file. To simplify the tutorial, the script downloads a completed linked template from a shared location. If you want to use the linked template you created, you can use the [Cloud shell](https://shell.azure.com) to upload your linked template, and then modify the script to use your own linked template.
165
+
The main template and the linked template need to be accessible from where you run the deployment. In this tutorial, you use the Cloud shell deployment method as you used in [Tutorial: Create Azure Resource Manager templates with dependent resources](./resource-manager-tutorial-create-templates-with-dependent-resources.md). The main template (azuredeploy.json) is uploaded to the shell. The linked template (linkedTemplate.json) must be shared somewhere securely. The following PowerShell script creates an Azure Storage account, uploads the template to the Storage account, and then generates a SAS token to grant limited access to the template file. To simplify the tutorial, the script downloads a completed linked template from a Github repository. If you want to use the linked template you created, you can use the [Cloud shell](https://shell.azure.com) to upload your linked template, and then modify the script to use your own linked template.
166
166
167
167
> [!NOTE]
168
168
> The script limits the SAS token to be used within eight hours. If you need more time to complete this tutorial, increase the expiry time.
$containerName = "linkedtemplates" # The name of the Blob container to be created.
177
177
178
-
$linkedTemplateURL = "https://armtutorials.blob.core.windows.net/linkedtemplates/linkedStorageAccount.json" # A completed linked template used in this tutorial.
178
+
$linkedTemplateURL = "https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/tutorial-linked-templates/linkedStorageAccount.json" # A completed linked template used in this tutorial.
179
179
$fileName = "linkedStorageAccount.json" # A file name used for downloading and uploading the linked template.
180
180
181
181
# Download the tutorial linked template
@@ -255,7 +255,7 @@ The main template is called azuredeploy.json.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/resource-manager-tutorial-deploy-sql-extensions-bacpac.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: azure-resource-manager
5
5
documentationcenter: ''
6
6
author: mumian
7
7
manager: dougeby
8
-
editor:
8
+
editor:
9
9
10
10
ms.service: azure-resource-manager
11
11
ms.workload: multiple
@@ -46,17 +46,17 @@ To complete this article, you need:
46
46
47
47
## Prepare a BACPAC file
48
48
49
-
A BACPAC file is shared on an [Azure Storage account](https://armtutorials.blob.core.windows.net/sqlextensionbacpac/SQLDatabaseExtension.bacpac) with the public access. To create your own, see [Export an Azure SQL database to a BACPAC file](../sql-database/sql-database-export.md). If you choose to publish the file to your own location, you must update the template later in the tutorial.
49
+
A BACPAC file is shared in [Github](https://github.com/Azure/azure-docs-json-samples/raw/master/tutorial-sql-extension/SQLDatabaseExtension.bacpac). To create your own, see [Export an Azure SQL database to a BACPAC file](../sql-database/sql-database-export.md). If you choose to publish the file to your own location, you must update the template later in the tutorial.
50
50
51
51
## Open a Quickstart template
52
52
53
-
The template used in this tutorial is stored in an [Azure Storage account](https://armtutorials.blob.core.windows.net/createsql/azuredeploy.json).
53
+
The template used in this tutorial is stored in [Github](https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/tutorial-sql-extension/azuredeploy.json).
54
54
55
55
1. From Visual Studio Code, select **File**>**Open File**.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/resource-manager-tutorial-deploy-vm-extensions.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ To complete this article, you need:
44
44
45
45
## Prepare a PowerShell script
46
46
47
-
A PowerShell script with the following content is shared from an [Azure storage account with public access](https://armtutorials.blob.core.windows.net/usescriptextensions/installWebServer.ps1):
47
+
A PowerShell script with the following content is shared from [Github](https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/tutorial-vm-extension/installWebServer.ps1):
@@ -59,7 +59,7 @@ Azure Quickstart Templates is a repository for Resource Manager templates. Inste
59
59
1. In Visual Studio Code, select **File** > **Open File**.
60
60
1. In the **File name** box, paste the following URL: https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vm-simple-windows/azuredeploy.json
61
61
62
-
1. To open the file, select **Open**.
62
+
1. To open the file, select **Open**.
63
63
The template defines five resources:
64
64
65
65
***Microsoft.Storage/storageAccounts**. See the [template reference](https://docs.microsoft.com/azure/templates/Microsoft.Storage/storageAccounts).
@@ -92,7 +92,7 @@ Add a virtual machine extension resource to the existing template with the follo
@@ -105,7 +105,7 @@ For more information about this resource definition, see the [extension referenc
105
105
***name**: Because the extension resource is a child resource of the virtual machine object, the name must have the virtual machine name prefix. See [Set name and type for child resources](child-resource-name-type.md).
106
106
***dependsOn**: Create the extension resource after you've created the virtual machine.
107
107
***fileUris**: The locations where the script files are stored. If you choose not to use the provided location, you need to update the values.
108
-
***commandToExecute**: This command invokes the script.
108
+
***commandToExecute**: This command invokes the script.
109
109
110
110
## Deploy the template
111
111
@@ -114,7 +114,7 @@ For the deployment procedure, see the "Deploy the template" section of [Tutorial
114
114
## Verify the deployment
115
115
116
116
1. In the Azure portal, select the VM.
117
-
1. In the VM overview, copy the IP address by selecting **Click to copy**, and then paste it in a browser tab.
117
+
1. In the VM overview, copy the IP address by selecting **Click to copy**, and then paste it in a browser tab.
118
118
The default Internet Information Services (IIS) welcome page opens:
119
119
120
120

@@ -125,7 +125,7 @@ When you no longer need the Azure resources you deployed, clean them up by delet
125
125
126
126
1. In the Azure portal, in the left pane, select **Resource group**.
127
127
2. In the **Filter by name** box, enter the resource group name.
128
-
3. Select the resource group name.
128
+
3. Select the resource group name.
129
129
Six resources are displayed in the resource group.
130
130
4. In the top menu, select **Delete resource group**.
@@ -61,7 +61,7 @@ To automate these steps using a PowerShell script, see the script from [Upload t
61
61
62
62
### Download the BACPAC file
63
63
64
-
Download the [BACPAC file](https://armtutorials.blob.core.windows.net/sqlextensionbacpac/SQLDatabaseExtension.bacpac), and save the file to your local computer with the same name, **SQLDatabaseExtension.bacpac**.
64
+
Download the [BACPAC file](https://github.com/Azure/azure-docs-json-samples/raw/master/tutorial-sql-extension/SQLDatabaseExtension.bacpac), and save the file to your local computer with the same name, **SQLDatabaseExtension.bacpac**.
65
65
66
66
### Create a storage account
67
67
@@ -131,13 +131,13 @@ A Blob container is needed before you can upload any files.
131
131
132
132
## Open an existing template
133
133
134
-
In this session, you modify the template you created in [Tutorial: Import SQL BACPAC files with Azure Resource Manager templates](./resource-manager-tutorial-deploy-sql-extensions-bacpac.md) to call the BACPAC file with a SAS token. The template developed in the SQL extension tutorial is shared at [https://armtutorials.blob.core.windows.net/sqlextensionbacpac/azuredeploy.json](https://armtutorials.blob.core.windows.net/sqlextensionbacpac/azuredeploy.json).
134
+
In this session, you modify the template you created in [Tutorial: Import SQL BACPAC files with Azure Resource Manager templates](./resource-manager-tutorial-deploy-sql-extensions-bacpac.md) to call the BACPAC file with a SAS token. The template developed in the SQL extension tutorial is shared in [GitHub](https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/tutorial-sql-extension/azuredeploy.json).
135
135
136
136
1. From Visual Studio Code, select **File**>**Open File**.
0 commit comments