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/templates/deploy-rest.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.date: 06/04/2019
6
6
---
7
7
# Deploy resources with Resource Manager templates and Resource Manager REST API
8
8
9
-
This article explains how to use the Resource Manager REST API with Resource Manager templates to deploy your resources to Azure.
9
+
This article explains how to use the Resource Manager REST API with Resource Manager templates to deploy your resources to Azure.
10
10
11
11
You can either include your template in the request body or link to a file. When using a file, it can be a local file or an external file that is available through a URI. When your template is in a storage account, you can restrict access to the template and provide a shared access signature (SAS) token during deployment.
12
12
@@ -61,7 +61,7 @@ The examples in this article use resource group deployments.
61
61
62
62
1. Validate your deployment before executing it by running the [Validate a template deployment](/rest/api/resources/deployments/validate) operation. When testing the deployment, provide parameters exactly as you would when executing the deployment (shown in the next step).
63
63
64
-
1. To deploy a template, provide your subscription ID, the name of the resource group, the name of the deployment in the request URI.
64
+
1. To deploy a template, provide your subscription ID, the name of the resource group, the name of the deployment in the request URI.
65
65
66
66
```HTTP
67
67
PUT https://management.azure.com/subscriptions/<YourSubscriptionId>/resourcegroups/<YourResourceGroupName>/providers/Microsoft.Resources/deployments/<YourDeploymentName>?api-version=2019-05-01
@@ -110,7 +110,7 @@ The examples in this article use resource group deployments.
110
110
111
111
You can set up your storage account to use a shared access signature (SAS) token. For more information, see [Delegating Access with a Shared Access Signature](/rest/api/storageservices/delegating-access-with-a-shared-access-signature).
112
112
113
-
If you need to provide a sensitive value for a parameter (such as a password), add that value to a key vault. Retrieve the key vault during deployment as shown in the previous example. For more information, see [Pass secure values during deployment](key-vault-parameter.md).
113
+
If you need to provide a sensitive value for a parameter (such as a password), add that value to a key vault. Retrieve the key vault during deployment as shown in the previous example. For more information, see [Pass secure values during deployment](key-vault-parameter.md).
114
114
115
115
1. Instead of linking to files for the template and parameters, you can include them in the request body. The following example shows the request body with the template and parameter inline:
116
116
@@ -149,8 +149,8 @@ The examples in this article use resource group deployments.
0 commit comments