By default this template will use the environment name as the prefix to prevent naming collisions within Azure. The parameters below show the default values. You only need to run the statements below if you need to change the values.
To override any of the parameters, run
azd env set <PARAMETER_NAME> <VALUE>before runningazd up. On the first azd command, it will prompt you for the environment name. Be sure to choose 3-20 characters alphanumeric unique name.
| Name | Type | Default Value | Purpose |
|---|---|---|---|
AZURE_ENV_NAME |
string | dkm |
Used as a prefix for all resource names to ensure uniqueness across environments. |
AZURE_LOCATION |
string | <User selects during deployment> |
Location of the Azure resources. Controls where the infrastructure will be deployed. |
AZURE_ENV_AI_SERVICE_LOCATION |
string | <User selects during deployment> |
Location for Azure OpenAI resources. Can be different from AZURE_LOCATION for optimized AI service placement. |
AZURE_ENV_MODEL_DEPLOYMENT_TYPE |
string | GlobalStandard |
Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
AZURE_ENV_GPT_MODEL_NAME |
string | gpt-5-mini |
Specifies the name of the GPT model to be deployed. |
AZURE_ENV_GPT_MODEL_CAPACITY |
int | 100 |
Sets the GPT model capacity (in thousands of tokens per minute). |
AZURE_ENV_GPT_MODEL_VERSION |
string | 2025-08-07 |
Version of the GPT model to be used for deployment. |
AZURE_ENV_EMBEDDING_MODEL_NAME |
string | text-embedding-3-large |
Sets the name of the embedding model to use. |
AZURE_ENV_EMBEDDING_MODEL_VERSION |
string | 1 |
Version of the embedding model to be used for deployment. |
AZURE_ENV_EMBEDDING_DEPLOYMENT_CAPACITY |
int | 100 |
Capacity for embedding model deployment (in thousands of tokens per minute). |
AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID |
string | '' (empty) |
Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. Guide to get your Existing Workspace ID |
AZURE_ENV_VM_ADMIN_USERNAME |
string | take(newGuid(), 20) |
The administrator username for the virtual machine. |
AZURE_ENV_VM_ADMIN_PASSWORD |
string | newGuid() |
The administrator password for the virtual machine. |
AZURE_ENV_VM_SIZE |
string | Standard_D2s_v5 |
The size of the Jumpbox Virtual Machine. Only applicable when enablePrivateNetworking is true. |
AZURE_ENV_ENABLE_TELEMETRY |
bool | true |
Enables telemetry for monitoring and diagnostics. |
To customize any of the above values, run the following command before azd up:
azd env set <PARAMETER_NAME> <VALUE>Set the Log Analytics Workspace Id if you need to reuse the existing workspace which is already existing
azd env set AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID '/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.OperationalInsights/workspaces/<workspace-name>'Example:
azd env set AZURE_LOCATION westus2