Skip to content

Commit b0d9c8a

Browse files
committed
Synchronize repo from Repoman
1 parent 1425f83 commit b0d9c8a

39 files changed

+42
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ Here's a high level architecture diagram that illustrates these components. Noti
7171

7272
!["Application architecture diagram"](assets/resources.png)
7373

74-
> This template provisions resources to an Azure subscription that you will select upon provisioning them. Please refer to the [Pricing calculator for Microsoft Azure](https://azure.microsoft.com/pricing/calculator/) and, if needed, update the included Azure resource definitions found in `infra/main.bicep` to suit your needs.
74+
### Cost of provisioning and deploying this template
75+
This template provisions resources to an Azure subscription that you will select upon provisioning them. Refer to the [Pricing calculator for Microsoft Azure](https://azure.microsoft.com/pricing/calculator/) to estimate the cost you might incur when this template is running on Azure and, if needed, update the included Azure resource definitions found in `infra/main.bicep` to suit your needs.
7576

7677
### Application Code
7778

infra/core/ai/cognitiveservices.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates an Azure Cognitive Services instance.'
12
param name string
23
param location string = resourceGroup().location
34
param tags object = {}

infra/core/database/cosmos/cosmos-account.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates an Azure Cosmos DB account.'
12
param name string
23
param location string = resourceGroup().location
34
param tags object = {}

infra/core/database/cosmos/mongo/cosmos-mongo-account.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates an Azure Cosmos DB for MongoDB account.'
12
param name string
23
param location string = resourceGroup().location
34
param tags object = {}

infra/core/database/cosmos/mongo/cosmos-mongo-db.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates an Azure Cosmos DB for MongoDB account with a database.'
12
param accountName string
23
param databaseName string
34
param location string = resourceGroup().location

infra/core/database/cosmos/sql/cosmos-sql-account.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates an Azure Cosmos DB for NoSQL account.'
12
param name string
23
param location string = resourceGroup().location
34
param tags object = {}

infra/core/database/cosmos/sql/cosmos-sql-db.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates an Azure Cosmos DB for NoSQL account with a database.'
12
param accountName string
23
param databaseName string
34
param location string = resourceGroup().location

infra/core/database/cosmos/sql/cosmos-sql-role-assign.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates a SQL role assignment under an Azure Cosmos DB account.'
12
param accountName string
23

34
param roleDefinitionId string

infra/core/database/cosmos/sql/cosmos-sql-role-def.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates a SQL role definition under an Azure Cosmos DB account.'
12
param accountName string
23

34
resource roleDefinition 'Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions@2022-08-15' = {

infra/core/database/postgresql/flexibleserver.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
metadata description = 'Creates an Azure Database for PostgreSQL - Flexible Server.'
12
param name string
23
param location string = resourceGroup().location
34
param tags object = {}

0 commit comments

Comments
 (0)