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/bicep/bicep-config-modules.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Module setting for Bicep config
3
3
description: Describes how to customize configuration values for modules in Bicep deployments.
4
4
ms.topic: conceptual
5
5
ms.custom: devx-track-bicep
6
-
ms.date: 06/10/2024
6
+
ms.date: 06/11/2024
7
7
---
8
8
9
9
# Add module settings in the Bicep config file
@@ -100,13 +100,16 @@ For a template spec, use:
100
100
module stgModule 'ts/CoreSpecs:storage:v1' = {
101
101
```
102
102
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:
104
104
105
105
```bicep
106
106
br/public:<file>:<tag>
107
107
```
108
108
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):
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/bicep/modules.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Bicep modules
3
3
description: Describes how to define a module in a Bicep file, and how to use module scopes.
4
4
ms.topic: conceptual
5
5
ms.custom: devx-track-bicep
6
-
ms.date: 06/06/2024
6
+
ms.date: 06/11/2024
7
7
---
8
8
9
9
# Bicep modules
@@ -93,26 +93,28 @@ For example, to deploy a file that is up one level in the directory from your ma
93
93
94
94
### File in registry
95
95
96
-
#### Azure Verified Modules
96
+
#### Public module registry
97
97
98
98
> [!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.
100
100
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.
102
104
103
105
:::image type="content" source="./media/modules/bicep-azure-verified-modules-avm.png" alt-text="The screenshot of Azure Verified Modules(AVM).":::
104
106
105
107
The module list shows the latest version. Select the version number to see a list of available versions:
106
108
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.":::
108
110
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:
description: Learn how to set up an Azure container registry for private Bicep modules
4
4
ms.topic: how-to
5
5
ms.custom: devx-track-bicep
6
-
ms.date: 06/10/2024
6
+
ms.date: 06/11/2024
7
7
---
8
8
9
9
# Create private registry for Bicep modules
10
10
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).
12
12
13
13
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.
0 commit comments