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: infra/main.bicep
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -2,22 +2,22 @@ targetScope = 'resourceGroup'
2
2
3
3
@minLength(3)
4
4
@maxLength(12)
5
-
@description('The name of the environment/application.')
5
+
@description('The name of the environment/application. Use alphanumeric characters only.')
6
6
paramnamestring
7
7
8
-
@description('Specifies the location for all the Azure resources.')
8
+
@description('Specifies the location for all the Azure resources. Defaults to the location of the resource group.')
9
9
paramlocationstring = resourceGroup().location
10
10
11
-
@description('Specifies the connections to be created for the Azure AI Hub workspace. The connections are used to connect to other Azure resources and services.')
11
+
@description('Optional. Specifies the connections to be created for the Azure AI Hub workspace. The connections are used to connect to other Azure resources and services.')
12
12
paramconnectionsconnectionType[] = []
13
13
14
-
@description('Specifies the OpenAI deployments to create.')
14
+
@description('Optional. Specifies the OpenAI deployments to create.')
15
15
paramaiModelDeploymentsdeploymentsType[] = []
16
16
17
-
@description('Specifies whether creating the Azure Container Registry.')
17
+
@description('Specifies whether creating an Azure Container Registry.')
18
18
paramacrEnabledbool = false
19
19
20
-
@description('Specifies the size of the virtual machine.')
20
+
@description('Specifies the size of the jump-box Virtual Machine.')
@description('Specifies the resource tags for all the resoources.')
34
+
@description('Optional. Specifies the resource tags for all the resoources. Tag "zad-env-name" is automatically added to all resources.')
35
35
paramtagsobject = {}
36
36
37
37
@description('Specifies the object id of a Microsoft Entra ID user. In general, this the object id of the system administrator who deploys the Azure resources. This defaults to the deploying user.')
@description('Specifies whether network isolation is enabled. When true, Foundry and related components will be deployed, network access parameters will be set to Disabled.')
47
47
paramnetworkIsolationbool = true
48
48
49
-
@description('Whether to include Cosmos DB in the deployment')
49
+
@description('Whether to include Cosmos DB in the deployment.')
50
50
paramcosmosDbEnabledbool = false
51
51
52
-
@description('Optional list of Cosmos DB databases to deploy')
52
+
@description('Optional. List of Cosmos DB databases to deploy.')
53
53
paramcosmosDatabasessqlDatabaseType[] = []
54
54
55
-
@description('Whether to include SQL Server in the deployment')
55
+
@description('Whether to include SQL Server in the deployment.')
56
56
paramsqlServerEnabledbool = false
57
57
58
-
@description('Optional list of SQL Server databases to deploy')
58
+
@description('Optional. List of SQL Server databases to deploy.')
Copy file name to clipboardExpand all lines: infra/main.json
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
"_generator": {
7
7
"name": "bicep",
8
8
"version": "0.33.93.31351",
9
-
"templateHash": "10384721894949341887"
9
+
"templateHash": "3622909770680254042"
10
10
}
11
11
},
12
12
"definitions": {
@@ -1629,14 +1629,14 @@
1629
1629
"minLength": 3,
1630
1630
"maxLength": 12,
1631
1631
"metadata": {
1632
-
"description": "The name of the environment/application."
1632
+
"description": "The name of the environment/application. Use alphanumeric characters only."
1633
1633
}
1634
1634
},
1635
1635
"location": {
1636
1636
"type": "string",
1637
1637
"defaultValue": "[resourceGroup().location]",
1638
1638
"metadata": {
1639
-
"description": "Specifies the location for all the Azure resources."
1639
+
"description": "Specifies the location for all the Azure resources. Defaults to the location of the resource group."
1640
1640
}
1641
1641
},
1642
1642
"connections": {
@@ -1646,7 +1646,7 @@
1646
1646
},
1647
1647
"defaultValue": [],
1648
1648
"metadata": {
1649
-
"description": "Specifies the connections to be created for the Azure AI Hub workspace. The connections are used to connect to other Azure resources and services."
1649
+
"description": "Optional. Specifies the connections to be created for the Azure AI Hub workspace. The connections are used to connect to other Azure resources and services."
1650
1650
}
1651
1651
},
1652
1652
"aiModelDeployments": {
@@ -1656,21 +1656,21 @@
1656
1656
},
1657
1657
"defaultValue": [],
1658
1658
"metadata": {
1659
-
"description": "Specifies the OpenAI deployments to create."
1659
+
"description": "Optional. Specifies the OpenAI deployments to create."
1660
1660
}
1661
1661
},
1662
1662
"acrEnabled": {
1663
1663
"type": "bool",
1664
1664
"defaultValue": false,
1665
1665
"metadata": {
1666
-
"description": "Specifies whether creating the Azure Container Registry."
1666
+
"description": "Specifies whether creating an Azure Container Registry."
1667
1667
}
1668
1668
},
1669
1669
"vmSize": {
1670
1670
"type": "string",
1671
1671
"defaultValue": "Standard_DS4_v2",
1672
1672
"metadata": {
1673
-
"description": "Specifies the size of the virtual machine."
1673
+
"description": "Specifies the size of the jump-box Virtual Machine."
1674
1674
}
1675
1675
},
1676
1676
"vmAdminUsername": {
@@ -1694,7 +1694,7 @@
1694
1694
"type": "object",
1695
1695
"defaultValue": {},
1696
1696
"metadata": {
1697
-
"description": "Specifies the resource tags for all the resoources."
1697
+
"description": "Optional. Specifies the resource tags for all the resoources. Tag \"zad-env-name\" is automatically added to all resources."
1698
1698
}
1699
1699
},
1700
1700
"userObjectId": {
@@ -1729,7 +1729,7 @@
1729
1729
"type": "bool",
1730
1730
"defaultValue": false,
1731
1731
"metadata": {
1732
-
"description": "Whether to include Cosmos DB in the deployment"
1732
+
"description": "Whether to include Cosmos DB in the deployment."
1733
1733
}
1734
1734
},
1735
1735
"cosmosDatabases": {
@@ -1739,14 +1739,14 @@
1739
1739
},
1740
1740
"defaultValue": [],
1741
1741
"metadata": {
1742
-
"description": "Optional list of Cosmos DB databases to deploy"
1742
+
"description": "Optional. List of Cosmos DB databases to deploy."
1743
1743
}
1744
1744
},
1745
1745
"sqlServerEnabled": {
1746
1746
"type": "bool",
1747
1747
"defaultValue": false,
1748
1748
"metadata": {
1749
-
"description": "Whether to include SQL Server in the deployment"
1749
+
"description": "Whether to include SQL Server in the deployment."
1750
1750
}
1751
1751
},
1752
1752
"sqlServerDatabases": {
@@ -1756,7 +1756,7 @@
1756
1756
},
1757
1757
"defaultValue": [],
1758
1758
"metadata": {
1759
-
"description": "Optional list of SQL Server databases to deploy"
1759
+
"description": "Optional. List of SQL Server databases to deploy."
0 commit comments