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: docs/CustomizingAzdParameters.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ By default this template will use the environment name as the prefix to prevent
20
20
|`AZURE_ENV_JUMPBOX_ADMIN_USERNAME`| string |`JumpboxAdminUser`| Specifies the administrator username for the Jumpbox Virtual Machine. |
21
21
|`AZURE_ENV_JUMPBOX_ADMIN_PASSWORD`| string |`JumpboxAdminP@ssw0rd1234!`| Specifies the administrator password for the Jumpbox Virtual Machine. |
22
22
|`AZURE_ENV_COSMOS_SECONDARY_LOCATION`| string |*(not set by default)*| Specifies the secondary region for Cosmos DB. Required if `enableRedundancy` is `true`. |
23
+
|`AZURE_EXISTING_AI_PROJECT_RESOURCE_ID`| string |*(not set by default)*| Specifies the existing AI Foundry Project Resource ID if it needs to be reused. |
23
24
---
24
25
25
26
## How to Set a Parameter
@@ -30,11 +31,16 @@ To customize any of the above values, run the following command **before** `azd
30
31
azd env set<PARAMETER_NAME><VALUE>
31
32
```
32
33
33
-
Set the Log Analytics Workspace Id if you need to reuse the existing workspace which is already existing
34
+
Set the Log Analytics Workspace Id if you need to reuse the existing workspace
34
35
```shell
35
36
azd env set AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID '/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.OperationalInsights/workspaces/<workspace-name>'
36
37
```
37
38
39
+
Set the Azure Existing AI Foundry Project Resource ID if you need to reuse the existing AI Foundry Project
40
+
```shell
41
+
azd env set AZURE_EXISTING_AI_PROJECT_RESOURCE_ID '/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.CognitiveServices/accounts/<account-name>/projects/<project-name>'
0 commit comments