Skip to content

Commit 401a010

Browse files
committed
update
1 parent 6bf232b commit 401a010

File tree

7 files changed

+22
-17
lines changed

7 files changed

+22
-17
lines changed

articles/azure-resource-manager/bicep/bicep-config-modules.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Module setting for Bicep config
33
description: Describes how to customize configuration values for modules in Bicep deployments.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 06/10/2024
6+
ms.date: 06/11/2024
77
---
88

99
# Add module settings in the Bicep config file
@@ -100,13 +100,16 @@ For a template spec, use:
100100
module stgModule 'ts/CoreSpecs:storage:v1' = {
101101
```
102102

103-
An alias has been predefined for [Azure Verified Modules](https://azure.github.io/Azure-Verified-Modules/indexes/bicep/). To reference an Azure verified module, you can use the format:
103+
An alias has been predefined for [public modules](./modules.md#file-in-registry). To reference a public module, you can use the format:
104104

105105
```bicep
106106
br/public:<file>:<tag>
107107
```
108108

109-
You can override the public module registry alias definition in the bicepconfig.json file:
109+
> [!NOTE]
110+
> Non-AVM (Azure Verified Modules) modules are retired from the public module registry.
111+
112+
You can override the public module registry alias definition in the [bicepconfig.json file](./bicep-config.md):
110113

111114
```json
112115
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Using statement
33
description: Describes how to use the using statement in Bicep.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 06/10/2024
6+
ms.date: 06/11/2024
77
---
88

99
# Using statement
@@ -29,7 +29,7 @@ The `using` statement in [Bicep parameter files](./parameter-files.md) ties the
2929
using '<path>/<file-name>.json'
3030
```
3131

32-
- To use [Azure Verified Modules](./modules.md##path-to-module):
32+
- To use [public modules](./modules.md#path-to-module):
3333

3434
```bicep
3535
using 'br/public:<file-path>:<tag>'
2.17 KB
Loading

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

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep modules
33
description: Describes how to define a module in a Bicep file, and how to use module scopes.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 06/06/2024
6+
ms.date: 06/11/2024
77
---
88

99
# Bicep modules
@@ -93,26 +93,28 @@ For example, to deploy a file that is up one level in the directory from your ma
9393

9494
### File in registry
9595

96-
#### Azure Verified Modules
96+
#### Public module registry
9797

9898
> [!NOTE]
99-
> Non-AVM modules are retired from the public registry.
99+
> Non-AVM (Azure Verified Modules) modules are retired from the public module registry.
100100
101-
[Azure Verified Modules](https://azure.github.io/Azure-Verified-Modules/indexes/bicep/) are pre-built, pre-tested, and pre-verified modules for deploying resources on Azure. These modules are created by Microsoft or trusted partners and are designed to simplify and accelerate the deployment process for common Azure resources and configurations. Select the highlighted numbers in the following screenshot to see the list of modules.
101+
[Azure Verified Modules](https://azure.github.io/Azure-Verified-Modules/indexes/bicep/) are pre-built, pre-tested, and pre-verified modules for deploying resources on Azure. These modules are created by Microsoft or trusted partners and are designed to simplify and accelerate the deployment process for common Azure resources and configurations.
102+
103+
Browse to the [Azure Verified Modules](https://azure.github.io/Azure-Verified-Modules/indexes/bicep/) site, and select the highlighted numbers in the following screenshot to see the list of modules.
102104

103105
:::image type="content" source="./media/modules/bicep-azure-verified-modules-avm.png" alt-text="The screenshot of Azure Verified Modules(AVM).":::
104106

105107
The module list shows the latest version. Select the version number to see a list of available versions:
106108

107-
:::image type="content" source="./media/modules/bicep-azure-verified-modules-avm-version.png" alt-text="The screenshot of Azure Verified Modules(AVM).":::
109+
:::image type="content" source="./media/modules/bicep-azure-verified-modules-avm-version.png" alt-text="The screenshot of Azure Verified Modules(AVM) versions.":::
108110

109-
To link to an Azure verified module, specify the module path with the following syntax:
111+
To link to a public module, specify the module path with the following syntax:
110112

111113
```bicep
112114
module <symbolic-name> 'br/public:<file-path>:<tag>' = {}
113115
```
114116

115-
- **br/public** is the alias for Azure Verfied Modules. This alias is predefined in your configuration.
117+
- **br/public** is the alias for public modules. You can customize this alias in the [Bicep configuration file](./bicep-config-modules.md).
116118
- **file path** can contain segments that can be separated by the `/` character.
117119
- **tag** is used for specifying a version for the module.
118120

@@ -128,7 +130,7 @@ module storage 'br/public:avm/res/storage/storage-account:0.9.0' = {
128130
```
129131

130132
> [!NOTE]
131-
> **br/public** is the alias for Azure Verified Modules. It can also be written as:
133+
> **br/public** is the alias for public modules. It can also be written as:
132134
>
133135
> ```bicep
134136
> module <symbolic-name> 'br:mcr.microsoft.com/bicep/<file-path>:<tag>' = {}

articles/azure-resource-manager/bicep/parameter-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create parameters files for Bicep deployment
33
description: Create parameters file for passing in values during deployment of a Bicep file.
44
ms.topic: how-to
55
ms.custom: devx-track-bicep
6-
ms.date: 06/10/2024
6+
ms.date: 06/11/2024
77
---
88

99
# Create parameters files for Bicep deployment

articles/azure-resource-manager/bicep/private-module-registry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Create private registry for Bicep module
33
description: Learn how to set up an Azure container registry for private Bicep modules
44
ms.topic: how-to
55
ms.custom: devx-track-bicep
6-
ms.date: 06/10/2024
6+
ms.date: 06/11/2024
77
---
88

99
# Create private registry for Bicep modules
1010

11-
To share [modules](modules.md) within your organization, you can create a private module registry. You publish modules to that registry and give read access to users who need to deploy the modules. After the modules are shared in the registries, you can reference them from your Bicep files. To use Azure Verified Modules, see [Bicep Modules](https://azure.github.io/Azure-Verified-Modules/indexes/bicep/).
11+
To share [modules](modules.md) within your organization, you can create a private module registry. You publish modules to that registry and give read access to users who need to deploy the modules. After the modules are shared in the registries, you can reference them from your Bicep files. To use public modules, see [Bicep Modules](./modules.md#file-in-registry).
1212

1313
To work with module registries, you must have [Bicep CLI](./install.md) version **0.4.1008 or later**. To use with Azure CLI, you must also have version **2.31.0 or later**; to use with Azure PowerShell, you must also have version **7.0.0** or later.
1414

articles/azure-resource-manager/bicep/quickstart-private-module-registry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Publish modules to private module registry
33
description: Publish Bicep modules to private module registry and use the modules.
4-
ms.date: 06/10/2024
4+
ms.date: 06/11/2024
55
ms.topic: quickstart
66
ms.custom: mode-api, devx-track-bicep
77
#Customer intent: As a developer new to Azure deployment, I want to learn how to publish Bicep modules to private module registry.

0 commit comments

Comments
 (0)