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
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,7 +214,9 @@ azd env new <environment-name>
214
214
azd up
215
215
```
216
216
217
-
Before running `azd up`, review the detailed guide and set any environment-specific values you need, especially networking, host counts, VM sizes, and SQL firewall access. The deployment scripts under `deploy/` now handle the Entra bootstrap, SSH key flow, post-provision role assignment, container image builds, SQL initialization, and Linux host SQL registration used by this solution.
217
+
The deployment defaults the App Service plan to Premium v3 `P2mv3`, which provides the minimum supported baseline of 4 vCPUs and 32 GB memory for the frontend, API, and task apps.
218
+
219
+
Before running `azd up`, review the detailed guide and set any environment-specific values you need, especially networking, host counts, VM sizes, App Service plan sizing, and SQL firewall access. The deployment scripts under `deploy/` now handle the Entra bootstrap, SSH key flow, App Service health checks on `/health`, Application Insights wiring for the frontend and API, post-provision role assignment, container image builds, SQL initialization, and Linux host SQL registration used by this solution.
Copy file name to clipboardExpand all lines: deploy/DEPLOYMENT.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,7 @@ The checked-in [bicep/main.parameters.example.json](bicep/main.parameters.exampl
78
78
79
79
-`appName`: base name for generated resources.
80
80
-`AZURE_LOCATION`: deployment region.
81
+
-`appServicePlanSku`: App Service plan SKU. The deployment baseline defaults to Premium v3 `P2mv3` for 4 vCPUs and 32 GB memory.
81
82
-`allowedClientIp`: your public client IP for SQL bootstrap from the local machine.
82
83
-`deployLinuxHosts`: `true` or `false`.
83
84
-`deployAvdHosts`: `true` or `false`.
@@ -190,6 +191,8 @@ Important deployment characteristics:
190
191
- SQL public network access is enabled.
191
192
- Azure services are allowed through the SQL firewall.
192
193
- A client-IP firewall rule is added only if `allowedClientIp` is set.
194
+
- The frontend and API App Services enable App Service health checks on `/health`.
195
+
- The frontend and API apps are instrumented with Azure Monitor OpenTelemetry and receive `APPLICATIONINSIGHTS_CONNECTION_STRING` and `OTEL_SERVICE_NAME` through app settings.
193
196
- Linux host auth defaults to `SSH`.
194
197
- Key Vault stores `db-password` and `linux-host`.
195
198
- The API app receives Key Vault Secrets User access so it can read those secrets at runtime.
0 commit comments