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: docs/CustomizingAzdParameters.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ By default this template will use the environment name as the prefix to prevent
18
18
|`AZURE_ENV_OPENAI_API_VERSION`| string |`2025-01-01-preview`| Specifies the API version for Azure OpenAI. |
19
19
|`AZURE_ENV_MODEL_CAPACITY`| integer |`30`| Sets the GPT model capacity (based on what's available in your subscription). |
20
20
|`AZURE_ENV_EMBEDDING_MODEL_NAME`| string |`text-embedding-ada-002`| Sets the name of the embedding model to use. |
21
-
|`AZURE_ENV_IMAGETAG`| string |`latest`| Set the Image tag Like (allowed values: latest, dev, hotfix) |
21
+
|`AZURE_ENV_IMAGETAG`| string |`latest_waf`| Set the Image tag Like (allowed values: latest_waf, dev, hotfix) |
22
22
|`AZURE_ENV_EMBEDDING_MODEL_CAPACITY`| integer |`80`| Sets the capacity for the embedding model deployment. |
23
23
|`AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID`| string | Guide to get your [Existing Workspace ID](/docs/re-use-log-analytics.md)| Reuses an existing Log Analytics Workspace instead of creating a new one. |
24
24
|`AZURE_EXISTING_AI_PROJECT_RESOURCE_ID`| string | Guid to get your existing AI Foundry Project resource ID | Reuses an existing AIFoundry and AIFoundryProject instead of creating a new one. |
Copy file name to clipboardExpand all lines: docs/DeploymentGuide.md
+39-1Lines changed: 39 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,45 @@ Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
22
22
23
23
This will allow the scripts to run for the current session without permanently changing your system's policy.
24
24
25
+
## Deployment Options & Steps
26
+
27
+
### Sandbox or WAF Aligned Deployment Options
28
+
29
+
The [`infra`](../infra) folder of the Multi Agent Solution Accelerator contains the [`main.bicep`](../infra/main.bicep) Bicep script, which defines all Azure infrastructure components for this solution.
30
+
31
+
By default, the `azd up` command uses the [`main.parameters.json`](../infra/main.parameters.json) file to deploy the solution. This file is pre-configured for a **sandbox environment** — ideal for development and proof-of-concept scenarios, with minimal security and cost controls for rapid iteration.
32
+
33
+
For **production deployments**, the repository also provides [`main.waf.parameters.json`](../infra/main.waf.parameters.json), which applies a [Well-Architected Framework (WAF) aligned](https://learn.microsoft.com/en-us/azure/well-architected/) configuration. This option enables additional Azure best practices for reliability, security, cost optimization, operational excellence, and performance efficiency, such as:
34
+
35
+
- Enhanced network security (e.g., Network protection with private endpoints)
36
+
- Stricter access controls and managed identities
37
+
- Logging, monitoring, and diagnostics enabled by default
38
+
- Resource tagging and cost management recommendations
39
+
40
+
**How to choose your deployment configuration:**
41
+
42
+
* Use the default `main.parameters.json` file for a **sandbox/dev environment**
43
+
* For a **WAF-aligned, production-ready deployment**, copy the contents of `main.waf.parameters.json` into `main.parameters.json` before running `azd up`
44
+
45
+
---
46
+
47
+
### VM Credentials Configuration
48
+
49
+
By default, the solution sets the VM administrator username and password from environment variables.
50
+
51
+
To set your own VM credentials before deployment, use:
52
+
53
+
```sh
54
+
azd env set AZURE_ENV_VM_ADMIN_USERNAME <your-username>
55
+
azd env set AZURE_ENV_VM_ADMIN_PASSWORD <your-password>
56
+
```
57
+
58
+
> [!TIP]
59
+
> Always review and adjust parameter values (such as region, capacity, security settings and log analytics workspace configuration) to match your organization’s requirements before deploying. For production, ensure you have sufficient quota and follow the principle of least privilege for all identities and role assignments.
60
+
25
61
62
+
> [!IMPORTANT]
63
+
> The WAF-aligned configuration is under active development. More Azure Well-Architected recommendations will be added in future updates.
26
64
27
65
## Deployment Options & Steps
28
66
@@ -111,7 +149,7 @@ When you start the deployment, most parameters will have **default values**, but
111
149
|**GPT Model Deployment Capacity**| Configure the capacity for**GPT model deployments** (in thousands). |`30k`|
112
150
|**Embedding Model**| The embedding model used by the app. |`text-embedding-ada-002`|
113
151
|**Embedding Model Capacity**| Configure the capacity for**embedding model deployments** (in thousands). |`80k`|
114
-
|**Image Tag**| Image version for deployment (allowed: `latest`, `dev`, `hotfix`). |`latest`|
152
+
|**Image Tag**| Image version for deployment (allowed: `latest_waf`, `dev`, `hotfix`). |`latest_waf`|
115
153
|**Existing Log Analytics Workspace**| If reusing a Log Analytics Workspace, specify the ID. |*(none)*|
0 commit comments