Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
335 changes: 123 additions & 212 deletions README.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions azure.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: multi-agent-custom-automation-engine-solution-accelerator

name: multi-agent-custom-automation-engine-solution-accelerator
14 changes: 14 additions & 0 deletions documentation/AzureAccountSetUp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Azure account setup

1. Sign up for a [free Azure account](https://azure.microsoft.com/free/) and create an Azure Subscription.
2. Check that you have the necessary permissions:
* Your Azure account must have `Microsoft.Authorization/roleAssignments/write` permissions, such as [Role Based Access Control Administrator](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#role-based-access-control-administrator-preview), [User Access Administrator](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#user-access-administrator), or [Owner](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#owner).
* Your Azure account also needs `Microsoft.Resources/deployments/write` permissions on the subscription level.

You can view the permissions for your account and subscription by following the steps below:
- Navigate to the [Azure Portal](https://portal.azure.com/) and click on `Subscriptions` under 'Navigation'
- Select the subscription you are using for this accelerator from the list.
- If you try to search for your subscription and it does not come up, make sure no filters are selected.
- Select `Access control (IAM)` and you can see the roles that are assigned to your account for this subscription.
- If you want to see more information about the roles, you can go to the `Role assignments`
tab and search by your account name and then click the role you want to view more information about.
345 changes: 345 additions & 0 deletions documentation/DeploymentGuide.md

Large diffs are not rendered by default.

164 changes: 0 additions & 164 deletions documentation/LocalDeployment.md

This file was deleted.

Binary file added documentation/images/readme/business-scenario.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified documentation/images/readme/macae-architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documentation/images/readme/quick-deploy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documentation/images/readme/solution-overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion next-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ To troubleshoot any issues, see [troubleshooting](#troubleshooting).

### Configure environment variables for running services

Configure environment variables for running services by updating `settings` in [main.parameters.json](./infra/main.parameters.json).
Environment variables can be configured by modifying the `env` settings in [resources.bicep](./infra/resources.bicep).
To define a secret, add the variable as a `secretRef` pointing to a `secrets` entry or a stored KeyVault secret.

### Configure CI/CD pipeline

Expand Down
Loading