diff --git a/README.md b/README.md index 078ed55d0..3ed312b4e 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ To deploy this solution accelerator, ensure you have access to an [Azure subscri Check the [Azure Products by Region](https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/table) page and select a **region** where the following services are available: Azure OpenAI Service, Azure AI Search, and Azure Semantic Search. -Here are some example regions where the services are available: East US, East US2, Japan East, UK South, Sweden Central. +Here are some example regions where the services are available: Australia East, East US2, France Central, Japan East, Norway East, Sweden Central, UK South, West US. Pricing varies per region and usage, so it isn't possible to predict exact costs for your usage. The majority of the Azure resources used in this infrastructure are on usage-based pricing tiers. However, Azure Container Registry has a fixed cost per registry per day. diff --git a/docs/CustomizingAzdParameters.md b/docs/CustomizingAzdParameters.md index c2c052c47..71ce95f29 100644 --- a/docs/CustomizingAzdParameters.md +++ b/docs/CustomizingAzdParameters.md @@ -2,7 +2,7 @@ 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 ` before running `azd up`. On the first azd command, it will prompt you for the environment name. Be sure to choose 3-20 characters alphanumeric unique name. +> To override any of the parameters, run `azd env set ` before running `azd up`. On the first azd command, it will prompt you for the environment name. Be sure to choose 3-16 characters alphanumeric unique name. ## Parameters @@ -23,7 +23,7 @@ By default this template will use the environment name as the prefix to prevent | `AZURE_ENV_REASONING_MODEL_NAME` | string | `o4-mini` | Specifies the name of the reasoning GPT model to be deployed. | | `AZURE_ENV_REASONING_MODEL_VERSION` | string | `2025-04-16` | Version of the reasoning GPT model to be used for deployment. | | `AZURE_ENV_REASONING_MODEL_CAPACITY` | int | `50` | Sets the reasoning GPT model capacity. | -| `AZURE_ENV_IMAGETAG` | string | `latest_v3` | Docker image tag used for container deployments. | +| `AZURE_ENV_IMAGE_TAG` | string | `latest_v4` | Docker image tag used for container deployments. | | `AZURE_ENV_ENABLE_TELEMETRY` | bool | `true` | Enables telemetry for monitoring and diagnostics. | | `AZURE_EXISTING_AIPROJECT_RESOURCE_ID` | string | `` | Set this if you want to reuse an AI Foundry Project instead of creating a new one. | | `AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID` | string | Guide to get your [Existing Workspace ID](re-use-log-analytics.md) | Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. | diff --git a/docs/azure_app_service_auth_setup.md b/docs/azure_app_service_auth_setup.md index 5b7fc1adc..248ec2fc4 100644 --- a/docs/azure_app_service_auth_setup.md +++ b/docs/azure_app_service_auth_setup.md @@ -26,7 +26,7 @@ This document provides step-by-step instructions to configure Azure App Registra ![Add Provider](./images/azure-app-service-auth-setup/AppAuthIdentityProviderAdd.png) -5. Accept the default values and click on `Add` button to go back to the previous page with the idenity provider added. +5. Accept the default values and click on `Add` button to go back to the previous page with the identity provider added. ![Add Provider](./images/azure-app-service-auth-setup/AppAuthIdentityProviderAdded.png) diff --git a/infra/main.parameters.json b/infra/main.parameters.json index 313b53e58..7aa975400 100644 --- a/infra/main.parameters.json +++ b/infra/main.parameters.json @@ -48,13 +48,13 @@ "value": "${AZURE_ENV_REASONING_MODEL_CAPACITY}" }, "backendContainerImageTag": { - "value": "${AZURE_ENV_IMAGE_TAG}" + "value": "${AZURE_ENV_IMAGE_TAG=latest_v4}" }, "frontendContainerImageTag": { - "value": "${AZURE_ENV_IMAGE_TAG}" + "value": "${AZURE_ENV_IMAGE_TAG=latest_v4}" }, "MCPContainerImageTag": { - "value": "${AZURE_ENV_IMAGE_TAG}" + "value": "${AZURE_ENV_IMAGE_TAG=latest_v4}" }, "enableTelemetry": { "value": "${AZURE_ENV_ENABLE_TELEMETRY}"