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/export-template-portal.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ To export one or more resources from a resource group:
37
37
38
38
:::image type="content" source="./media/export-template-portal/show-template.png" alt-text="Screenshot of the displayed exported template in Azure portal.":::
39
39
40
-
**Include parameters** is selected by default. When selected, all template parameters will be included when the template is generated. If you’d like to author your own parameters, toggle this checkbox to not include them.
40
+
**Include parameters** is selected by default. When selected, all template parameters are included when the template is generated. If you’d like to author your own parameters, toggle this checkbox to not include them.
41
41
42
42
## Export template from a resource
43
43
@@ -51,7 +51,7 @@ To export one resource:
51
51
52
52
:::image type="content" source="./media/export-template-portal/export-single-resource.png" alt-text="Screenshot of exporting a single resource in Azure portal.":::
53
53
54
-
1. The exported template is displayed, and is available to download and deploy. The template only contains the single resource. **Include parameters** is selected by default. When selected, all template parameters will be included when the template is generated. If you’d like to author your own parameters, toggle this checkbox to not include them.
54
+
1. The exported template is displayed, and is available to download and deploy. The template only contains the single resource. **Include parameters** is selected by default. When selected, all template parameters are included when the template is generated. If you’d like to author your own parameters, toggle this checkbox to not include them.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/frequently-asked-questions.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ sections:
40
40
- question: |
41
41
I missed your presentation at Microsoft Build 2020. Is the presentation available for viewing?
42
42
answer: |
43
-
Yes, please [watch it anytime](https://mybuild.microsoft.com/sessions/82984db4-37a4-4ed3-bf8b-13298841ed18?source=sessions).
43
+
Yes, [watch it anytime](https://mybuild.microsoft.com/sessions/82984db4-37a4-4ed3-bf8b-13298841ed18?source=sessions).
44
44
45
45
- question: |
46
46
Where can I get more information about the new features you announced at Build?
@@ -80,7 +80,7 @@ sections:
80
80
answer: |
81
81
We recommend running the [ARM test toolkit](https://github.com/azure/arm-ttk) and the [what-if operation](./deploy-what-if.md) on your templates before deploying them. The test toolkit checks whether your template uses best practices. It provides warnings when it identifies changes that could improve how you've implemented your template.
82
82
83
-
The what-if operation shows the changes your template will make to your environment. You can see unintended changes before they're deployed. What-if also returns any errors it can detect during preflight validation. For example, if your template contains a syntactical error, it returns that error. It also returns any errors it can determine about the final state of the deployed resources. For example, if your template deploys a storage account with a name that is already in use, what-if returns that error.
83
+
The what-if operation shows the changes your template makes to your environment. You can see unintended changes before they're deployed. What-if also returns any errors it can detect during preflight validation. For example, if your template contains a syntactical error, it returns that error. It also returns any errors it can determine about the final state of the deployed resources. For example, if your template deploys a storage account with a name that is already in use, what-if returns that error.
84
84
85
85
- question: |
86
86
Where can I find information about the properties that are available for each resource type?
@@ -101,7 +101,7 @@ sections:
101
101
102
102
- question: |
103
103
Is there a plan to support creating templates in YAML?
104
-
answer: Currently, there's no plan to support YAML. We believe the new template language will offer a solution that is easier to use than YAML or JSON.
104
+
answer: Currently, there's no plan to support YAML. We believe the new template language offers a solution that is easier to use than YAML or JSON.
105
105
106
106
- question: |
107
107
Can I still write templates in JSON after the new template language has been released?
@@ -116,7 +116,7 @@ sections:
116
116
questions:
117
117
- question: |
118
118
How are template specs and Azure Blueprints related?
119
-
answer: Azure Blueprints will use template specs in its implementation by replacing the `blueprint definition` resource with a `template spec` resource. We'll provide a migration path to convert the blueprint definition into a template spec, but the blueprint definition APIs will still be supported. There are no changes to the `blueprint assignment` resource. Blueprints will remain a user-experience to compose a governed environment in Azure.
119
+
answer: Azure Blueprints will use template specs in its implementation by replacing the `blueprint definition` resource with a `template spec` resource. We provide a migration path to convert the blueprint definition into a template spec, but the blueprint definition APIs will still be supported. There are no changes to the `blueprint assignment` resource. Blueprints remain a user-experience to compose a governed environment in Azure.
120
120
121
121
- question: |
122
122
Do template specs replace linked templates?
@@ -144,7 +144,7 @@ sections:
144
144
- name: Preview changes before deployment
145
145
questions:
146
146
- question: |
147
-
Can I preview the changes that will happen before deploying a template?
147
+
Can I preview the changes that happen before deploying a template?
148
148
answer: |
149
149
Yes, use the [what-if feature](./deploy-what-if.md). It evaluates the current state of your environment and compares it to the state that will exist after deployment. You can examine the summarized changes to make sure the template doesn't have any unexpected results.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/resource-declaration.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.date: 03/20/2024
10
10
11
11
To deploy a resource through an Azure Resource Manager template (ARM template), you add a resource declaration. Use the `resources` array in a JSON template.
12
12
13
-
[languageVersion 2.0](./syntax.md#languageversion-20) makes a list of enhancements to ARM JSON templates, such as changing the resources declaration from an array to an object. The majority of the samples shown in this article still use `resources` array. For languageVersion 2.0 specific information, see [Use symbolic name](#use-symbolic-name).
13
+
[languageVersion 2.0](./syntax.md#languageversion-20) makes a list of enhancements to ARM JSON templates, such as changing the resources declaration from an array to an object. Most the samples shown in this article still use `resources` array. For languageVersion 2.0 specific information, see [Use symbolic name](#use-symbolic-name).
14
14
15
15
16
16
@@ -21,7 +21,7 @@ To deploy a resource through an Azure Resource Manager template (ARM template),
21
21
> [!TIP]
22
22
> We recommend [Bicep](../bicep/overview.md) because it offers the same capabilities as ARM templates and the syntax is easier to use. To learn more, see [resource declaration](../bicep/resource-declaration.md).
23
23
24
-
You are limited to 800 resources in a template. For more information, see [Template limits](./best-practices.md#template-limits).
24
+
You're limited to 800 resources in a template. For more information, see [Template limits](./best-practices.md#template-limits).
25
25
26
26
## Set resource type and version
27
27
@@ -207,7 +207,7 @@ Symbolic names are case-sensitive. The allowed characters for symbolic names are
207
207
}
208
208
```
209
209
210
-
The [reference](./template-functions-resource.md#reference) function can use a resource's symbolic name, as shown in the preceding example. The reference function can no longer use a resource's name, for example, `reference(parameters('storageAccountName'))`is not allowed.
210
+
The [reference](./template-functions-resource.md#reference) function can use a resource's symbolic name, as shown in the preceding example. The reference function can no longer use a resource's name, for example, `reference(parameters('storageAccountName'))`isn't allowed.
211
211
212
212
If [Deployments resource](/azure/templates/microsoft.resources/deployments?tabs=json) is used in a symbolic-name deployment, use apiVersion `2020-09-01` or later.
0 commit comments