You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,8 +115,7 @@ either by deleting the resource group in the Portal or running `azd down`.
115
115
|[Azure Storage Account](https://learn.microsoft.com/en-us/azure/storage/common/storage-account-overview)| Stores transcripts, intermediate outputs, and application assets. | Standard LRS; usage-based cost by storage/operations. |[Pricing](https://azure.microsoft.com/pricing/details/storage/blobs/)|
116
116
117
117
|[Azure AI Services (OpenAI)](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/overview)| Enables language understanding, summarization, entity extraction, and chat capabilities using GPT models. | S0 Tier; pricing depends on token volume and model used (e.g., GPT-4o-mini). |[Pricing](https://azure.microsoft.com/pricing/details/cognitive-services/)|
118
-
|[Azure Container Apps](https://learn.microsoft.com/en-us/azure/container-apps/overview)| Hosts microservices and APIs powering the front-end and backend orchestration. | Consumption plan with 0.5 vCPU, 1GiB memory; includes a free usage tier. |[Pricing](https://azure.microsoft.com/pricing/details/container-apps/)|
119
-
|[Azure Container Registry](https://learn.microsoft.com/en-us/azure/container-registry/container-registry-intro)| Stores and serves container images used by Azure Container Apps. | Basic Tier; fixed daily cost per registry. |[Pricing](https://azure.microsoft.com/pricing/details/container-registry/)|
118
+
|[Azure App Service](https://learn.microsoft.com/en-us/azure/app-service/overview)| Hosts the front-end web application and backend API as Linux container apps. | Basic B3 (non-WAF) or Premium P1v3 (WAF); fixed cost based on plan tier. |[Pricing](https://azure.microsoft.com/pricing/details/app-service/linux/)|
120
119
|[Azure Monitor / Log Analytics](https://learn.microsoft.com/en-us/azure/azure-monitor/logs/log-analytics-overview)| Collects and analyzes telemetry and logs from services and containers. | Pay-as-you-go; charges based on data ingestion volume. |[Pricing](https://azure.microsoft.com/pricing/details/monitor/)|
121
120
|[Azure SQL Database](https://learn.microsoft.com/en-us/azure/azure-sql/database/sql-database-paas-overview)| Stores structured data including insights, metadata, and indexed results. | General Purpose Tier; can be provisioned or serverless. Fixed cost if provisioned. |[Pricing](https://azure.microsoft.com/pricing/details/azure-sql-database/single/)|
122
121
|[Azure Cosmos DB](https://learn.microsoft.com/en-us/azure/cosmos-db/introduction)| Used for fast, globally distributed NoSQL data storage for chat history and vector metadata. | Autoscale or provisioned throughput; fixed minimum cost if provisioned. |[Pricing](https://azure.microsoft.com/en-us/pricing/details/cosmos-db/autoscale-provisioned/)|
@@ -189,7 +188,7 @@ To maintain strong security practices, it is recommended that GitHub repositorie
189
188
Additional security considerations include:
190
189
191
190
- Enabling [Microsoft Defender for Cloud](https://learn.microsoft.com/en-us/azure/defender-for-cloud) to monitor and secure Azure resources.
192
-
- Using [Virtual Networks](https://learn.microsoft.com/en-us/azure/container-apps/networking?tabs=workload-profiles-env%2Cazure-cli) or [firewall rules](https://learn.microsoft.com/en-us/azure/container-apps/waf-app-gateway) to protect Azure Container Apps from unauthorized access.
191
+
- Using [Virtual Networks](https://learn.microsoft.com/en-us/azure/app-service/overview-vnet-integration) or [access restrictions](https://learn.microsoft.com/en-us/azure/app-service/app-service-ip-restrictions) to protect Azure App Service from unauthorized access.
@@ -225,7 +224,7 @@ azd env set AZURE_ENV_VM_ADMIN_PASSWORD <your-password>
225
224
<details>
226
225
<summary><b>Configurable Parameters</b></summary>
227
226
228
-
You can customize various deployment settings before running `azd up`, including Azure regions, AI model configurations (deployment type, version, capacity), container registry settings, and resource names.
227
+
You can customize various deployment settings before running `azd up`, including Azure regions, AI model configurations (deployment type, version, capacity), and resource names.
229
228
230
229
📖 **Complete Guide:** See [Parameter Customization Guide](./CustomizingAzdParameters.md) for the full list of available parameters and their usage.
0 commit comments