Skip to content

Commit 2d7a5bd

Browse files
Rename parameters for existing Log Analytics Workspace and AI Foundry Project for clarity
1 parent 48ec242 commit 2d7a5bd

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/CustomizingAzdParameters.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ By default this template will use the environment name as the prefix to prevent
1515
| `AZURE_ENV_GPT_MODEL_NAME` | string | `gpt-4o` | Set the Model Name (allowed values: gpt-4o). |
1616
| `AZURE_ENV_GPT_MODEL_VERSION` | string | `2024-08-06` | Set the Azure model version (allowed values: 2024-08-06) |
1717
| `AZURE_ENV_GPT_MODEL_CAPACITY` | integer | `150` | Set the Model Capacity (choose a number based on available GPT model capacity in your subscription). |
18-
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_RID`| string | Guide to get your [Existing Workspace ID](/docs/re-use-log-analytics.md) | Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
18+
| `AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID`| string | Guide to get your [Existing Workspace ID](/docs/re-use-log-analytics.md) | Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
1919
| `AZURE_ENV_IMAGETAG` | string | `latest` | Set the Image tag Like (allowed values: latest, dev, hotfix) |
2020
| `AZURE_ENV_VM_SIZE` | string | `Standard_DS2_v2` | Specifies the size of the Jumpbox Virtual Machine. Set a custom value if `enablePrivateNetworking` is `true`. |
2121
| `AZURE_ENV_VM_ADMIN_USERNAME` | string | `JumpboxAdminUser` | Specifies the administrator username for the Jumpbox Virtual Machine. |
2222
| `AZURE_ENV_VM_ADMIN_PASSWORD` | string | `JumpboxAdminP@ssw0rd1234!` | Specifies the administrator password for the Jumpbox Virtual Machine. |
2323
| `AZURE_ENV_SECONDARY_LOCATION` | string | *(not set by default)* | Specifies the secondary region for Cosmos DB. Required if `enableRedundancy` is `true`. |
24-
| `AZURE_ENV_FOUNDRY_PROJECT_RID` | string | *(not set by default)* | Specifies the existing AI Foundry Project Resource ID if it needs to be reused. |
24+
| `AZURE_EXISTING_AIPROJECT_RESOURCE_ID` | string | *(not set by default)* | Specifies the existing AI Foundry Project Resource ID if it needs to be reused. |
2525
| `AZURE_ENV_CONTAINER_REGISTRY_ENDPOINT`| string | `cmsacontainerreg.azurecr.io` | Specifies the Azure Container Registry endpoint to use for container images. |
2626

2727
---
@@ -36,12 +36,12 @@ azd env set <PARAMETER_NAME> <VALUE>
3636

3737
Set the Log Analytics Workspace Id if you need to reuse the existing workspace
3838
```shell
39-
azd env set AZURE_ENV_LOG_ANALYTICS_WORKSPACE_RID '/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.OperationalInsights/workspaces/<workspace-name>'
39+
azd env set AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID '/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.OperationalInsights/workspaces/<workspace-name>'
4040
```
4141

4242
Set the Azure Existing AI Foundry Project Resource ID if you need to reuse the existing AI Foundry Project
4343
```shell
44-
azd env set AZURE_ENV_FOUNDRY_PROJECT_RID '/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.CognitiveServices/accounts/<account-name>/projects/<project-name>'
44+
azd env set AZURE_EXISTING_AIPROJECT_RESOURCE_ID '/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.CognitiveServices/accounts/<account-name>/projects/<project-name>'
4545
```
4646

4747
**Example:**

infra/main.parameters.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"value": "${AZURE_ENV_CONTAINER_REGISTRY_ENDPOINT=cmsacontainerreg.azurecr.io}"
2828
},
2929
"existingLogAnalyticsWorkspaceId": {
30-
"value": "${AZURE_ENV_LOG_ANALYTICS_WORKSPACE_RID}"
30+
"value": "${AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID}"
3131
},
3232
"existingFoundryProjectResourceId": {
33-
"value": "${AZURE_ENV_FOUNDRY_PROJECT_RID}"
33+
"value": "${AZURE_EXISTING_AIPROJECT_RESOURCE_ID}"
3434
},
3535
"secondaryLocation": {
3636
"value": "${AZURE_ENV_SECONDARY_LOCATION}"

infra/main.waf.parameters.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"value": "${AZURE_ENV_CONTAINER_REGISTRY_ENDPOINT=cmsacontainerreg.azurecr.io}"
2828
},
2929
"existingLogAnalyticsWorkspaceId": {
30-
"value": "${AZURE_ENV_LOG_ANALYTICS_WORKSPACE_RID}"
30+
"value": "${AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID}"
3131
},
3232
"existingFoundryProjectResourceId": {
33-
"value": "${AZURE_ENV_FOUNDRY_PROJECT_RID}"
33+
"value": "${AZURE_EXISTING_AIPROJECT_RESOURCE_ID}"
3434
},
3535
"secondaryLocation": {
3636
"value": "${AZURE_ENV_SECONDARY_LOCATION}"

0 commit comments

Comments
 (0)