Skip to content

Commit 4dfb3d0

Browse files
Merge pull request #246590 from mumian/0728-freshness-01
ARM content freshness - 5
2 parents e26f17f + 99015ae commit 4dfb3d0

File tree

9 files changed

+33
-27
lines changed

9 files changed

+33
-27
lines changed

articles/azure-resource-manager/bicep/patterns-shared-variable-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: johndowns
55
ms.author: jodowns
66
ms.topic: conceptual
77
ms.custom: devx-track-bicep
8-
ms.date: 07/01/2022
8+
ms.date: 07/28/2023
99
---
1010
# Shared variable file pattern
1111

@@ -39,7 +39,7 @@ When you define your resource names, use string interpolation to concatenate the
3939

4040
## Example 2: Network security group rules
4141

42-
Suppose you have multiple Bicep file that define their own network security groups (NSG). You have a common set of security rules that must be applied to each NSG, and then you have application-specific rules that must be added.
42+
Suppose you have multiple Bicep files that define their own network security groups (NSG). You have a common set of security rules that must be applied to each NSG, and then you have application-specific rules that must be added.
4343

4444
Define a JSON file that includes the common security rules that apply across your company:
4545

articles/azure-resource-manager/bicep/scenarios-monitoring.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
---
22
title: Create monitoring resources by using Bicep
33
description: Describes how to create monitoring resources by using Bicep.
4-
author: willvelida
5-
ms.author: willvelida
64
ms.topic: conceptual
75
ms.custom: devx-track-bicep
8-
ms.date: 07/01/2022
6+
ms.date: 07/28/2023
97
---
8+
109
# Create monitoring resources by using Bicep
1110

1211
Azure has a comprehensive suite of tools that can monitor your applications and services. You can programmatically create your monitoring resources using Bicep to automate the creation of rules, diagnostic settings, and alerts when provisioning your Azure infrastructure.
1312

14-
Bringing your monitoring configuration into your Bicep code might seem unusual, considering that there are tools available inside the Azure portal to set up alert rules, diagnostic settings and dashboards.
13+
Bringing your monitoring configuration into your Bicep code might seem unusual, considering that there are tools available inside the Azure portal to set up alert rules, diagnostic settings and dashboards.
1514

1615
However, alerts and diagnostic settings are essentially the same as your other infrastructure resources. By including them in your Bicep code, you can deploy and test your alerting resources as you would for other Azure resources.
1716

@@ -27,7 +26,7 @@ Diagnostic settings enable you to configure Azure Monitor to export your logs an
2726

2827
When creating [diagnostic settings](../../azure-monitor/essentials/diagnostic-settings.md) in Bicep, remember that this resource is an [extension resource](scope-extension-resources.md), which means it's applied to another resource. You can create diagnostic settings in Bicep by using the resource type [Microsoft.Insights/diagnosticSettings](/azure/templates/microsoft.insights/diagnosticsettings?tabs=bicep).
2928

30-
When creating diagnostic settings in Bicep, you need to apply the scope of the diagnostic setting. The diagnostic setting can be applied at the management, subscription, or resource group level. [Use the scope property on this resource to set the scope for this resource](../../azure-resource-manager/bicep/scope-extension-resources.md).
29+
When creating diagnostic settings in Bicep, you need to apply the scope of the diagnostic setting. The diagnostic setting can be applied at the management, subscription, or resource group level. [Use the scope property on this resource to set the scope for this resource](../../azure-resource-manager/bicep/scope-extension-resources.md).
3130

3231
Consider the following example:
3332

@@ -87,7 +86,7 @@ Metric alerts notify you when one of your metrics crosses a defined threshold. Y
8786

8887
The [Azure activity log](../../azure-monitor/essentials/activity-log.md) is a platform log in Azure that provides insights into events at the subscription level. This includes information such as when a resource in Azure is modified.
8988

90-
Activity log alerts are alerts that are activated when a new activity log event occurs that matches the conditions that are specified in the alert.
89+
Activity log alerts are alerts that are activated when a new activity log event occurs that matches the conditions that are specified in the alert.
9190

9291
You can use the `scope` property within the type [Microsoft.Insights/activityLogAlerts](/azure/templates/microsoft.insights/activitylogalerts?tabs=bicep) to create activity log alerts on a specific resource or a list of resources using the resource IDs as a prefix.
9392

@@ -120,11 +119,11 @@ For more information about creating dashboards with code, see [Programmatically
120119

121120
## Autoscale rules
122121

123-
To create an autoscaling setting, you define these using the resource type [Microsoft.Insights/autoscaleSettings](/azure/templates/microsoft.insights/autoscalesettings?tabs=bicep).
122+
To create an autoscaling setting, you define these using the resource type [Microsoft.Insights/autoscaleSettings](/azure/templates/microsoft.insights/autoscalesettings?tabs=bicep).
124123

125124
To target the resource that you want to apply the autoscaling setting to, you need to provide the target resource identifier of the resource that the setting should be added to.
126125

127-
In this example, a *scale out* condition for the App Service plan based on the average CPU percentage over a 10 minute time period. If the App Service plan exceeds 70% average CPU consumption over 10 minutes, the autoscale engine scales out the plan by adding one instance.
126+
In this example, a *scale out* condition for the App Service plan based on the average CPU percentage over a 10 minute time period. If the App Service plan exceeds 70% average CPU consumption over 10 minutes, the autoscale engine scales out the plan by adding one instance.
128127

129128
::: code language="bicep" source="~/azure-docs-bicep-samples/samples/scenarios-monitoring/autoscaling-rules.bicep" :::
130129

articles/azure-resource-manager/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ metadata:
1313
ms.collection: collection
1414
author: tfitzmac
1515
ms.author: tomfitz
16-
ms.date: 12/08/2021
16+
ms.date: 07/28/2023
1717

1818
# highlightedContent section (optional)
1919
# Maximum of 8 items

articles/azure-resource-manager/templates/template-tutorial-create-first-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ az account set --subscription SubscriptionName
117117

118118
## Create resource group
119119

120-
When you deploy a template, you can specify a resource group to contain the resources. Before running the deployment command, create the resource group with either the Bash Azure CLI or Azure PowerShell.
120+
When you deploy a template, you can specify a resource group to contain the resources. Before running the deployment command, create the resource group with either the Bash Azure CLI or Azure PowerShell.
121121

122122
> [!NOTE]
123123
> Samples for the Azure CLI are written for the bash shell. To run this sample in Windows PowerShell or the Command Prompt, you may need to remove the back slashes and write the command as one line such as:

articles/container-registry/container-registry-get-started-bicep.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ author: mumian
66
ms.author: jgao
77
ms.date: 10/11/2022
88
ms.topic: quickstart
9-
ms.service: azure-resource-manager
9+
ms.service: container-registry
10+
tags: azure-resource-manager, bicep
1011
ms.custom: mode-api, devx-track-bicep
1112
---
1213

@@ -22,7 +23,7 @@ If you don't have an Azure subscription, create a [free](https://azure.microsoft
2223

2324
## Review the Bicep file
2425

25-
Use Visual studio code or your favorite editor to create a file with the following content and name it **main.bicep**:
26+
Use Visual Studio Code or your favorite editor to create a file with the following content and name it **main.bicep**:
2627

2728
```bicep
2829
@minLength(5)

articles/container-registry/container-registry-get-started-geo-replication-template.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ms.author: tejaswikolli
77
ms.date: 10/11/2022
88
ms.topic: quickstart
99
ms.service: container-registry
10+
tags: azure-resource-manager
1011
ms.custom: subject-armqs, mode-arm, devx-track-arm-template
1112
---
1213

@@ -52,7 +53,7 @@ More Azure Container Registry template samples can be found in the [quickstart t
5253
* **Region**: select a location for the resource group. Example: **Central US**.
5354
* **Acr Name**: accept the generated name for the registry, or enter a name. It must be globally unique.
5455
* **Acr Admin User Enabled**: accept the default value.
55-
* **Location**: accept the generated location for the registry's home replica, or enter a location such as **Central US**.
56+
* **Location**: accept the generated location for the registry's home replica, or enter a location such as **Central US**.
5657
* **Acr Sku**: accept the default value.
5758
* **Acr Replica Location**: enter a location for the registry replica, using the region's short name. It must be different from the home registry location. Example: **westeurope**.
5859

articles/private-5g-core/deploy-private-mobile-network-with-site-arm-template.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
title: Deploy a private mobile network and site - ARM template
33
titleSuffix: Azure Private 5G Core
44
description: Learn how to deploy a private mobile network and site using an Azure Resource Manager template (ARM template).
5-
services: azure-resource-manager
5+
services: azure-resource-manager
66
author: djrmetaswitch
77
ms.author: drichards
8-
ms.service: azure-resource-manager
8+
ms.service: private-5g-core
9+
tags: azure-resource-manager
910
ms.topic: quickstart
1011
ms.custom: subject-armqs, devx-track-arm-template
1112
ms.date: 03/23/2022
@@ -62,7 +63,7 @@ The following Azure resources are defined in the template.
6263

6364
1. Select or enter the following values, using the information you retrieved in [Prerequisites](#prerequisites).
6465

65-
66+
6667
|Field |Value |
6768
|---------|---------|
6869
|**Subscription** | Select the Azure subscription you want to use to create your private mobile network. |
@@ -85,11 +86,11 @@ The following Azure resources are defined in the template.
8586
|**User Plane Data Interface Name** | Enter the virtual network name on port 6 on your Azure Stack Edge Pro device corresponding to the user plane interface on the data network. For 5G, this interface is the N6 interface; for 4G, it's the SGi interface. |
8687
|**User Equipment Address Pool Prefix** | Enter the network address of the subnet from which dynamic IP addresses must be allocated to User Equipment (UEs) in CIDR notation. You can omit this if you don't want to support dynamic IP address allocation. |
8788
|**User Equipment Static Address Pool Prefix** | Enter the network address of the subnet from which static IP addresses must be allocated to User Equipment (UEs) in CIDR notation. You can omit this if you don't want to support static IP address allocation. |
88-
|**Data Network Name** | Enter the name of the data network. |
89+
|**Data Network Name** | Enter the name of the data network. |
8990
|**Core Network Technology** | Enter *5GC* for 5G, or *EPC* for 4G. |
9091
|**Napt Enabled** | Set this field depending on whether Network Address and Port Translation (NAPT) should be enabled for the data network.|
9192
| **Dns Addresses** | Enter the DNS server addresses. You should only omit this if you don't need the UEs to perform DNS resolution, or if all UEs in the network will use their own locally configured DNS servers. |
92-
|**Custom Location** | Enter the resource ID of the custom location that targets the Azure Kubernetes Service on Azure Stack HCI (AKS-HCI) cluster on the Azure Stack Edge Pro device in the site.|
93+
|**Custom Location** | Enter the resource ID of the custom location that targets the Azure Kubernetes Service on Azure Stack HCI (AKS-HCI) cluster on the Azure Stack Edge Pro device in the site.|
9394

9495
2. Select **Review + create**.
9596
3. Azure will now validate the configuration values you've entered. You should see a message indicating that your values have passed validation.
@@ -113,9 +114,9 @@ The following Azure resources are defined in the template.
113114
- A **Packet Core Control Plane** resource representing the control plane function of the packet core instance in the site.
114115
- A **Packet Core Data Plane** resource representing the data plane function of the packet core instance in the site.
115116
- An **Attached Data Network** resource representing the site's view of the data network.
116-
- A **Service** resource representing the default service.
117+
- A **Service** resource representing the default service.
117118
- A **SIM Policy** resource representing the allow-all SIM policy.
118-
- A **SIM Group** resource (if you provisioned any SIMs).
119+
- A **SIM Group** resource (if you provisioned any SIMs).
119120

120121
:::image type="content" source="media/create-full-private-5g-core-deployment-arm-template/full-deployment-resource-group.png" alt-text="Screenshot of the Azure portal showing a resource group containing the resources for a full Azure Private 5G Core deployment." lightbox="media/create-full-private-5g-core-deployment-arm-template/full-deployment-resource-group.png":::
121122

articles/synapse-analytics/sql-data-warehouse/quickstart-arm-template.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ title: Create a dedicated SQL pool (formerly SQL DW) by using Azure Resource Man
33
description: Learn how to create an Azure Synapse Analytics SQL pool by using Azure Resource Manager template.
44
services: azure-resource-manager
55
author: WilliamDAssafMSFT
6-
ms.service: azure-resource-manager
6+
ms.service: synapse-analytics
7+
ms.subservice: sql-dw
8+
tags: azure-resource-manager
79
ms.topic: quickstart
810
ms.author: wiassaf
911
ms.date: 06/09/2020
@@ -37,7 +39,7 @@ The template defines one resource:
3739
## Deploy the template
3840

3941
1. Select the following image to sign in to Azure and open the template. This template creates a dedicated SQL pool (formerly SQL DW).
40-
42+
4143
[![Deploy to Azure](../../media/template-deployments/deploy-to-azure.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.sql%2Fsql-data-warehouse-transparent-encryption-create%2Fazuredeploy.json)
4244

4345
1. Enter or update the following values:
@@ -49,7 +51,7 @@ The template defines one resource:
4951
* **SQL Administrator login**: Enter the administrator username for the SQL Server.
5052
* **SQL Administrator password**: Enter the administrator password for the SQL Server.
5153
* **Data Warehouse Name**: Enter a dedicated SQL pool name.
52-
* **Transparent Data Encryption**: Accept the default, enabled.
54+
* **Transparent Data Encryption**: Accept the default, enabled.
5355
* **Service Level Objective**: Accept the default, DW400c.
5456
* **Location**: Accept the default location of the resource group.
5557
* **Review and Create**: Select.
@@ -64,7 +66,7 @@ You can either use the Azure portal to check the deployed resources, or use Azur
6466
```azurecli-interactive
6567
echo "Enter the resource group where your dedicated SQL pool (formerly SQL DW) exists:" &&
6668
read resourcegroupName &&
67-
az resource list --resource-group $resourcegroupName
69+
az resource list --resource-group $resourcegroupName
6870
```
6971

7072
# [PowerShell](#tab/PowerShell)

articles/synapse-analytics/sql-data-warehouse/quickstart-bicep.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ title: Create an Azure Synapse Analytics dedicated SQL pool (formerly SQL DW) us
33
description: Learn how to create an Azure Synapse Analytics SQL pool using Bicep.
44
services: azure-resource-manager
55
author: rayoef
6-
ms.service: azure-resource-manager
6+
ms.service: synapse-analytics
7+
ms.subservice: sql-dw
8+
tags: azure-resource-manager, bicep
79
ms.topic: quickstart
810
ms.author: rayoflores
911
ms.date: 05/20/2022

0 commit comments

Comments
 (0)