Skip to content

Commit 5a74666

Browse files
Update parameters for AI services and remove secondary location references
1 parent 1d2b47c commit 5a74666

3 files changed

Lines changed: 5 additions & 15 deletions

File tree

docs/CustomizingAzdParameters.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ By default this template will use the environment name as the prefix to prevent
1010
| ------------------------------- | ------- | ----------------------- | ------------------------------------------------------------------------------------- |
1111
| `AZURE_ENV_NAME` | string | `conmig` | Sets the environment name prefix for all Azure resources. |
1212
| `AZURE_LOCATION` | string | `westus` | Sets the location/region for all Azure resources. |
13-
| `AZURE_SECONDARY_LOCATION` | string | `eastus2` | Specifies a secondary Azure region. |
1413
| `AZURE_CONTAINER_REGISTRY_HOST` | string | `myregistry.azurecr.io` | Specifies the container registry from which to pull app container images. |
14+
| `AZURE_AI_SERVICE_LOCATION` | string | `eastus2` | Specifies the Azure region for AI services (OpenAI/AI Foundry). |
1515
| `AZURE_AI_DEPLOYMENT_LOCATION` | string | `eastus2` | Specifies alternative location for AI model resources. |
1616
| `AZURE_AI_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the model deployment type (allowed values: `Standard`, `GlobalStandard`). |
1717
| `AZURE_AI_MODEL_NAME` | string | `o3` | Specifies the `o` model name. |
1818
| `AZURE_AI_MODEL_VERSION` | string | `2025-04-16` | Specifies the `o` model version. |
1919
| `AZURE_AI_MODEL_CAPACITY` | integer | `200` | Sets the model capacity (choose based on your subscription's available `o` capacity). |
20+
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | `` | Optional. Resource ID of an existing Log Analytics workspace to use. |
21+
| `AZURE_EXISTING_AI_PROJECT_RESOURCE_ID` | string | `` | Optional. Resource ID of an existing AI Foundry project to use. |
2022
| `AZURE_ENV_VM_ADMIN_USERNAME` | string | `` | The administrator username for the virtual machine. |
2123
| `AZURE_ENV_VM_ADMIN_PASSWORD` | string | `` | The administrator password for the virtual machine. |
2224
| `AZURE_ENV_IMAGETAG` | string | `latest` | Specifies the container image tag to use for deployment. |

infra/main.parameters.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
"location": {
99
"value": "${AZURE_LOCATION}"
1010
},
11-
"secondaryLocation": {
12-
"value": "${AZURE_SECONDARY_LOCATION}"
13-
},
1411
"containerRegistryHost": {
1512
"value": "${AZURE_CONTAINER_REGISTRY_HOST}"
1613
},
@@ -20,9 +17,6 @@
2017
"aiDeploymentLocation": {
2118
"value": "${AZURE_AI_DEPLOYMENT_LOCATION}"
2219
},
23-
"azureAiServiceLocation": {
24-
"value": "${AZURE_AI_SERVICE_LOCATION}"
25-
},
2620
"aiDeploymentType": {
2721
"value": "${AZURE_AI_DEPLOYMENT_TYPE}"
2822
},
@@ -41,7 +35,7 @@
4135
"existingLogAnalyticsWorkspaceId": {
4236
"value": "${AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID}"
4337
},
44-
"existingFoundryProjectResourceId":{
38+
"existingFoundryProjectResourceId": {
4539
"value": "${AZURE_EXISTING_AI_PROJECT_RESOURCE_ID}"
4640
},
4741
"vmAdminUsername": {

infra/main.waf.parameters.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
"location": {
99
"value": "${AZURE_LOCATION}"
1010
},
11-
"secondaryLocation": {
12-
"value": "${AZURE_SECONDARY_LOCATION}"
13-
},
1411
"containerRegistryHost": {
1512
"value": "${AZURE_CONTAINER_REGISTRY_HOST}"
1613
},
@@ -20,9 +17,6 @@
2017
"aiDeploymentLocation": {
2118
"value": "${AZURE_AI_DEPLOYMENT_LOCATION}"
2219
},
23-
"azureAiServiceLocation": {
24-
"value": "${AZURE_AI_SERVICE_LOCATION}"
25-
},
2620
"aiDeploymentType": {
2721
"value": "${AZURE_AI_DEPLOYMENT_TYPE}"
2822
},
@@ -56,7 +50,7 @@
5650
"existingLogAnalyticsWorkspaceId": {
5751
"value": "${AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID}"
5852
},
59-
"existingFoundryProjectResourceId":{
53+
"existingFoundryProjectResourceId": {
6054
"value": "${AZURE_EXISTING_AI_PROJECT_RESOURCE_ID}"
6155
},
6256
"imageTag": {

0 commit comments

Comments
 (0)