Skip to content

Commit 86a7172

Browse files
committed
edit
1 parent 8579215 commit 86a7172

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/azure-resource-manager/templates/export-template-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To export one or more resources from a resource group:
3737

3838
:::image type="content" source="./media/export-template-portal/show-template.png" alt-text="Screenshot of the displayed exported template in Azure portal.":::
3939

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.
4141

4242
## Export template from a resource
4343

@@ -51,7 +51,7 @@ To export one resource:
5151

5252
:::image type="content" source="./media/export-template-portal/export-single-resource.png" alt-text="Screenshot of exporting a single resource in Azure portal.":::
5353

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.
5555

5656
## Download template before deployment
5757

articles/azure-resource-manager/templates/frequently-asked-questions.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sections:
4040
- question: |
4141
I missed your presentation at Microsoft Build 2020. Is the presentation available for viewing?
4242
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).
4444
4545
- question: |
4646
Where can I get more information about the new features you announced at Build?
@@ -80,7 +80,7 @@ sections:
8080
answer: |
8181
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.
8282
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.
8484
8585
- question: |
8686
Where can I find information about the properties that are available for each resource type?
@@ -101,7 +101,7 @@ sections:
101101
102102
- question: |
103103
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.
105105
106106
- question: |
107107
Can I still write templates in JSON after the new template language has been released?
@@ -116,7 +116,7 @@ sections:
116116
questions:
117117
- question: |
118118
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.
120120
121121
- question: |
122122
Do template specs replace linked templates?
@@ -144,7 +144,7 @@ sections:
144144
- name: Preview changes before deployment
145145
questions:
146146
- 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?
148148
answer: |
149149
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.
150150

articles/azure-resource-manager/templates/resource-declaration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 03/20/2024
1010

1111
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.
1212

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).
1414

1515

1616

@@ -21,7 +21,7 @@ To deploy a resource through an Azure Resource Manager template (ARM template),
2121
> [!TIP]
2222
> 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).
2323
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).
2525

2626
## Set resource type and version
2727

@@ -207,7 +207,7 @@ Symbolic names are case-sensitive. The allowed characters for symbolic names are
207207
}
208208
```
209209

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.
211211

212212
If [Deployments resource](/azure/templates/microsoft.resources/deployments?tabs=json) is used in a symbolic-name deployment, use apiVersion `2020-09-01` or later.
213213

0 commit comments

Comments
 (0)