Skip to content

Commit 065c977

Browse files
authored
Merge pull request #235 from microsoft/AVM_WAF_Integration
refactor: WAF aligned option for infra
2 parents f8de0f8 + 3656087 commit 065c977

22 files changed

+3340
-2659
lines changed

documentation/DeploymentGuide.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To deploy this solution accelerator, ensure you have access to an [Azure subscri
66

77
Check the [Azure Products by Region](https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/?products=all&regions=all) page and select a **region** where the following services are available:
88

9-
- [Azure OpenAI Service](https://learn.microsoft.com/en-us/azure/ai-services/openai/)
9+
- [Azure AI Foundry](https://learn.microsoft.com/en-us/azure/ai-foundry/)
1010
- [Azure Container Apps](https://learn.microsoft.com/en-us/azure/container-apps/)
1111
- [Azure Container Registry](https://learn.microsoft.com/en-us/azure/container-registry/)
1212
- [Azure Cosmos DB](https://learn.microsoft.com/en-us/azure/cosmos-db/)
@@ -28,6 +28,31 @@ This will allow the scripts to run for the current session without permanently c
2828

2929
## Deployment Options & Steps
3030

31+
### Sandbox or WAF Aligned Deployment Options
32+
33+
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.
34+
35+
By default, the `azd up` command uses the [`main.bicepparam`](../infra/main.bicepparam) 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.
36+
37+
For **production deployments**, the repository also provides [`main.waf-aligned.bicepparam`](../infra/main.waf-aligned.bicepparam), 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:
38+
39+
- Enhanced network security (e.g., Network protection with private endpoints)
40+
- Stricter access controls and managed identities
41+
- Logging, monitoring, and diagnostics enabled by default
42+
- Resource tagging and cost management recommendations
43+
44+
**How to choose your deployment configuration:**
45+
- Use the default [`main.bicepparam`](../infra/main.bicepparam) for a sandbox/dev environment.
46+
- For a WAF-aligned, production-ready deployment, copy the contents of [`main.waf-aligned.bicepparam`](../infra/main.waf-aligned.bicepparam) into `main.bicepparam` before running `azd up`.
47+
48+
> [!TIP]
49+
> Always review and adjust parameter values (such as region, capacity, and security settings) 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.
50+
51+
> [!IMPORTANT]
52+
> The WAF-aligned configuration is under active development. More Azure Well-Architected recommendations will be added in future updates.
53+
54+
### Deployment Steps
55+
3156
Pick from the options below to see step-by-step instructions for GitHub Codespaces, VS Code Dev Containers, Local Environments, and Bicep deployments.
3257

3358
| [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator) | [![Open in Dev Containers](https://img.shields.io/static/v1?style=for-the-badge&label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator) |

infra/bicepconfig.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"experimentalFeaturesEnabled": {
3+
"extensibility": true
4+
},
5+
"extensions": {
6+
"graphV1": "br:mcr.microsoft.com/bicep/extensions/microsoftgraph/v1.0:0.2.0-preview" // ,
7+
// "graphBeta": "br:mcr.microsoft.com/bicep/extensions/microsoftgraph/beta:0.2.0-preview"
8+
}
9+
}

0 commit comments

Comments
 (0)