Skip to content

Commit 1fe2182

Browse files
authored
Merge pull request #296530 from mumian/0317-refreshness
Content freshness
2 parents d03d4d2 + 80a37a3 commit 1fe2182

11 files changed

+33
-36
lines changed

articles/azure-resource-manager/bicep/contribute.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
---
22
title: Contribute to Bicep
33
description: Describes how to submit open source contributions to Bicep.
4-
5-
author: johndowns
6-
ms.author: jodowns
74
ms.topic: conceptual
85
ms.custom: devx-track-bicep
9-
ms.date: 06/23/2023
6+
ms.date: 03/17/2025
107
---
118

129
# Contribute to Bicep

articles/azure-resource-manager/bicep/index.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010
ms.author: jgao
1111
ms.subservice: bicep
1212
ms.topic: landing-page
13-
ms.date: 05/21/2024
13+
ms.date: 03/17/2025
1414

1515
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1616

@@ -24,8 +24,6 @@ landingContent:
2424
url: overview.md
2525
- linkListType: video
2626
links:
27-
- text: Ignite 2021 presentation
28-
url: https://www.youtube.com/embed/sc1kJfcRQgY
2927
- text: Learn live - Bicep
3028
url: /events/learntv/learnlive-iac-and-bicep/
3129
- text: Learn Live - Bicep and GitHub Actions
@@ -56,6 +54,8 @@ landingContent:
5654
url: /training/paths/intermediate-bicep/
5755
- text: Advanced Bicep
5856
url: /training/paths/advanced-bicep/
57+
- text: Use deployment stacks
58+
url: /training/modules/introduction-to-deployment-stacks/
5959

6060
# Card
6161
- title: Author Bicep files
@@ -80,14 +80,12 @@ landingContent:
8080
url: ./user-defined-functions.md
8181
- linkListType: reference
8282
links:
83-
- text: Functions
84-
url: ./bicep-functions.md
85-
- text: Operators
86-
url: ./operators.md
8783
- text: Data types
8884
url: ./data-types.md
89-
- text: Azure Quickstart Templates
90-
url: https://azure.microsoft.com/resources/templates/
85+
- text: Operators
86+
url: ./operators.md
87+
- text: Functions
88+
url: ./bicep-functions.md
9189
# Card
9290
- title: Deploy Bicep files
9391
linkLists:
@@ -140,9 +138,16 @@ landingContent:
140138
links:
141139
- text: Bicep resource reference
142140
url: /azure/templates/
141+
- text: Bicep CLI
142+
url: ./bicep-cli.md
143+
- text: Bicep core diagnostics
144+
url: ./bicep-core-diagnostics.md
145+
- text: Azure Quickstart Templates
146+
url: https://azure.microsoft.com/resources/templates/
143147
- text: Microsoft Graph Bicep reference
144148
url: https://learn.microsoft.com/graph/templates/reference/overview
145149
- text: Azure PowerShell
146150
url: /powershell/module/az.resources
147151
- text: Azure CLI
148152
url: /cli/azure/resource
153+

articles/azure-resource-manager/bicep/installation-troubleshoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot problems with Bicep installation
33
description: How to resolve errors and problems with your Bicep installation.
44
ms.topic: troubleshooting
55
ms.custom: devx-track-bicep, devx-track-dotnet
6-
ms.date: 03/20/2024
6+
ms.date: 03/18/2025
77
---
88

99
# Troubleshoot Bicep installation

articles/azure-resource-manager/bicep/quickstart-create-bicep-use-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create Bicep files - Visual Studio
33
description: Use Visual Studio and the Bicep extension to create Bicep files for deploy Azure resources.
4-
ms.date: 03/20/2024
4+
ms.date: 03/17/2025
55
ms.topic: quickstart
66
ms.custom: devx-track-bicep
77
#Customer intent: As a developer new to Azure deployment, I want to learn how to use Visual Studio to create and edit Bicep files, so I can use them to deploy Azure resources.

articles/azure-resource-manager/bicep/quickstart-create-deployment-stacks-template-specs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create and deploy a deployment stack with Bicep from template specs
33
description: Learn how to use Bicep to create and deploy a deployment stack from template specs.
4-
ms.date: 05/22/2024
4+
ms.date: 03/17/2025
55
ms.topic: quickstart
66
ms.custom: mode-api, devx-track-azurecli, devx-track-azurepowershell, devx-track-bicep
77
# Customer intent: As a developer I want to use Bicep to create a deployment stack from a template spec.
@@ -26,7 +26,7 @@ param resourceGroupLocation string = resourceGroup().location
2626
param storageAccountName string = 'store${uniqueString(resourceGroup().id)}'
2727
param vnetName string = 'vnet${uniqueString(resourceGroup().id)}'
2828
29-
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-04-01' = {
29+
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' = {
3030
name: storageAccountName
3131
location: resourceGroupLocation
3232
kind: 'StorageV2'
@@ -35,7 +35,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2023-04-01' = {
3535
}
3636
}
3737
38-
resource virtualNetwork 'Microsoft.Network/virtualNetworks@2023-11-01' = {
38+
resource virtualNetwork 'Microsoft.Network/virtualNetworks@2024-05-01' = {
3939
name: vnetName
4040
location: resourceGroupLocation
4141
properties: {

articles/azure-resource-manager/bicep/resource-dependencies.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Set resource dependencies in Bicep
33
description: Describes how to specify the order resources are deployed.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 03/20/2024
6+
ms.date: 03/18/2025
77
---
88

99
# Resource dependencies in Bicep
@@ -50,7 +50,7 @@ A resource that includes the [parent](./child-resource-name-type.md) property ha
5050
The following example shows a storage account and file service. The file service has an implicit dependency on the storage account.
5151

5252
```bicep
53-
resource storage 'Microsoft.Storage/storageAccounts@2023-04-01' = {
53+
resource storage 'Microsoft.Storage/storageAccounts@2023-05-01' = {
5454
name: 'examplestorage'
5555
location: resourceGroup().location
5656
kind: 'StorageV2'
@@ -59,12 +59,12 @@ resource storage 'Microsoft.Storage/storageAccounts@2023-04-01' = {
5959
}
6060
}
6161
62-
resource service 'Microsoft.Storage/storageAccounts/fileServices@2023-04-01' = {
62+
resource service 'Microsoft.Storage/storageAccounts/fileServices@2023-05-01' = {
6363
name: 'default'
6464
parent: storage
6565
}
6666
67-
resource share 'Microsoft.Storage/storageAccounts/fileServices/shares@2023-04-01' = {
67+
resource share 'Microsoft.Storage/storageAccounts/fileServices/shares@2023-05-01' = {
6868
name: 'exampleshare'
6969
parent: service
7070
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ resource logAnalytics 'Microsoft.OperationalInsights/workspaces@2023-09-01' exis
4141
name: logAnalyticsWorkspace
4242
}
4343
44-
resource appServicePlan 'Microsoft.Web/serverfarms@2023-12-01' = {
44+
resource appServicePlan 'Microsoft.Web/serverfarms@2024-04-01' = {
4545
name: appPlanName
4646
location: location
4747
sku: {
@@ -148,7 +148,7 @@ param location string = resourceGroup().location
148148
149149
var actionGroupEmail = '[email protected]'
150150
151-
resource supportTeamActionGroup 'Microsoft.Insights/actionGroups@2023-01-01' = {
151+
resource supportTeamActionGroup 'Microsoft.Insights/actionGroups@2024-10-01-preview' = {
152152
name: actionGroupName
153153
location: location
154154
properties: {

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
22
title: Create Azure RBAC resources by using Bicep
33
description: Describes how to create role assignments and role definitions by using Bicep.
4-
author: johndowns
5-
ms.author: jodowns
64
ms.topic: conceptual
75
ms.custom: devx-track-bicep
8-
ms.date: 06/23/2023
6+
ms.date: 03/17/2025
97
---
8+
109
# Create Azure RBAC resources by using Bicep
1110

1211
Azure has a powerful role-based access control (RBAC) system. For more information on Azure RBAC, see [What is Azure Role-based access control (Azure RBAC)?](../../role-based-access-control/overview.md) By using Bicep, you can programmatically define your RBAC role assignments and role definitions.
@@ -30,7 +29,7 @@ param storageSkuName string = 'Standard_LRS'
3029
param roleDefinitionResourceId string
3130
param principalId string
3231
33-
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-04-01' = {
32+
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' = {
3433
name: storageAccountName
3534
location: location
3635
kind: 'StorageV2'

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
title: Use Bicep to manage secrets
33
description: Learn how to use Bicep and Azure Key Vault to manage secrets.
44
ms.topic: conceptual
5-
ms.date: 01/10/2025
5+
ms.date: 03/17/2025
66
ms.custom: devx-track-bicep
7-
author: johndowns
8-
ms.author: jodowns
97
---
108

119
# Use Bicep to manage secrets

articles/azure-resource-manager/bicep/scenarios-virtual-networks.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
---
22
title: Create virtual network resources by using Bicep
33
description: Describes how to create virtual networks, network security groups, and route tables by using Bicep.
4-
author: johndowns
5-
ms.author: jodowns
64
ms.topic: conceptual
75
ms.custom: devx-track-bicep
8-
ms.date: 03/20/2024
6+
ms.date: 03/17/2025
97
---
108

119
# Create virtual network resources by using Bicep

0 commit comments

Comments
 (0)