Skip to content

Commit d943657

Browse files
fix: Update Azure Deployment Parameters
2 parents e4f0ff6 + c1544d8 commit d943657

File tree

2 files changed

+21
-18
lines changed

2 files changed

+21
-18
lines changed

documents/CustomizingAzdParameters.md

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,26 @@ By default this template will use the environment name as the prefix to prevent
99

1010
| Name | Type | Default Value | Purpose |
1111
| ----------------------------------------- | ------- | ------------------------ | -------------------------------------------------------------------------- |
12-
| `AZURE_LOCATION` | string | ` ` | Sets the Azure region for resource deployment. |
13-
| `AZURE_ENV_NAME` | string | `env_name` | Sets the environment name prefix for all Azure resources. |
14-
| `AZURE_CONTENT_UNDERSTANDING_LOCATION` | string | `swedencentral` | Specifies the region for content understanding resources. |
15-
| `AZURE_SECONDARY_LOCATION` | string | `eastus2` | Specifies a secondary Azure region. |
16-
| `AZURE_OPENAI_MODEL_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the model deployment type (allowed: `Standard`, `GlobalStandard`). |
17-
| `AZURE_OPENAI_DEPLOYMENT_MODEL` | string | `gpt-4o-mini` | Specifies the GPT model name (e.g., `gpt-4`, `gpt-4o-mini`). |
18-
| `AZURE_ENV_MODEL_VERSION` | string | `2024-07-18` | Sets the Azure model version (allowed: `2024-08-06`, etc.). |
19-
| `AZURE_OPENAI_API_VERSION` | string | `2025-01-01-preview` | Specifies the API version for Azure OpenAI. |
20-
| `AZURE_OPENAI_DEPLOYMENT_MODEL_CAPACITY` | integer | `30` | Sets the GPT model capacity. |
21-
| `AZURE_ENV_IMAGETAG` | string | `latest` | Sets the image tag (`latest`, `dev`, `hotfix`, etc.). |
22-
| `AZURE_ENV_USE_CASE` | string | `Retail-sales-analysis` | Specifies the use case to deploy (allowed: `Retail-sales-analysis`, `Insurance-improve-customer-meetings`). |
23-
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | Guide to get your [Existing Workspace ID](/documents/re-use-log-analytics.md) | Reuses an existing Log Analytics Workspace instead of creating a new one. |
24-
| `USE_LOCAL_BUILD` | string | `false` | Indicates whether to use a local container build for deployment. |
25-
| `AZURE_EXISTING_AI_PROJECT_RESOURCE_ID` | string | `<Existing AI Project resource Id>` | Reuses an existing AIFoundry and AIFoundryProject instead of creating a new one. |
12+
| `AZURE_LOCATION` | string | ` ` | Sets the Azure region for resource deployment. |
13+
| `AZURE_ENV_NAME` | string | `env_name` | Sets the environment name prefix for all Azure resources (3-20 chars). |
14+
| `AZURE_SECONDARY_LOCATION` | string | `eastus2` | Specifies a secondary Azure region for databases. |
15+
| `AZURE_OPENAI_MODEL_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the model deployment type (allowed: `Standard`, `GlobalStandard`). |
16+
| `AZURE_OPENAI_DEPLOYMENT_MODEL` | string | `gpt-4.1-mini` | Specifies the GPT model name (e.g., `gpt-4.1-mini`). |
17+
| `AZURE_ENV_MODEL_VERSION` | string | `2025-04-14` | Sets the GPT model version. |
18+
| `AZURE_OPENAI_API_VERSION` | string | `2025-01-01-preview` | Specifies the API version for Azure OpenAI. |
19+
| `AZURE_OPENAI_DEPLOYMENT_MODEL_CAPACITY` | integer | `150` | Sets the GPT model capacity (minimum: 10). |
20+
| `AZURE_ENV_IMAGETAG` | string | `latest_workshop` | Sets the container image tag. |
21+
| `AZURE_ENV_USE_CASE` | string | `Retail-sales-analysis` | Specifies the use case (allowed: `Retail-sales-analysis`, `Insurance-improve-customer-meetings`). |
22+
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | ` ` | Reuses an existing Log Analytics Workspace. Guide: [Existing Workspace ID](/documents/re-use-log-analytics.md). |
23+
| `AZURE_EXISTING_AI_PROJECT_RESOURCE_ID` | string | ` ` | Reuses an existing AI Foundry project instead of creating a new one. |
24+
| `BACKEND_RUNTIME_STACK` | string | `python` | Backend language (allowed: `python`, `dotnet`). |
25+
| `AZURE_ENV_AI_DEPLOYMENTS_LOCATION` | string | | Location for AI Foundry deployment (e.g., `eastus`, `swedencentral`). |
26+
| `AZURE_ENV_ACR_NAME` | string | `dataagentscontainerregworkshop` | Name of the Azure Container Registry to pull images from. |
27+
| `AZURE_ENV_SEARCH_SERVICE_LOCATION` | string | *(resource group location)* | Location for Azure AI Search service deployment. |
28+
| `AZURE_ENV_DEPLOY_APP` | bool | `true` | Deploy application components (API, Frontend, Cosmos DB). |
29+
| `IS_WORKSHOP` | bool | `true` | Enable workshop mode with sample data and simplified configuration. |
30+
| `AZURE_ENV_ONLY` | bool | `false` | Deploy Azure SQL Server instead of Fabric SQL. |
31+
| `DEPLOYING_USER_PRINCIPAL_TYPE` | string | `User` | Principal type of deployer (allowed: `User`, `ServicePrincipal`). |
2632

2733

2834

infra/main.parameters.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
"AZURE_LOCATION": {
99
"value": "${AZURE_LOCATION}"
1010
},
11-
"contentUnderstandingLocation" :{
12-
"value": "${AZURE_CONTENT_UNDERSTANDING_LOCATION}"
13-
},
1411
"secondaryLocation": {
1512
"value": "${AZURE_SECONDARY_LOCATION}"
1613
},
@@ -23,7 +20,7 @@
2320
"gptModelVersion": {
2421
"value": "${AZURE_ENV_MODEL_VERSION}"
2522
},
26-
"azureOpenaiAPIVersion": {
23+
"azureOpenAIApiVersion": {
2724
"value": "${AZURE_OPENAI_API_VERSION}"
2825
},
2926
"gptDeploymentCapacity": {

0 commit comments

Comments
 (0)