Skip to content

Commit f164511

Browse files
committed
fixing style
1 parent 779b265 commit f164511

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

articles/ai-services/agents/how-to/byo-vnet-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ author: fosteramanda
1111
ms.author: fosteramanda
1212
ms.custom: azure-ai-agents
1313
---
14-
# Overview Standard setup with Virtual Networking
14+
# Overview Standard setup with BYO Vnet
1515

1616
Azure AI Agent Service offers a standard agent configuration with private networking, allowing you to bring your own (BYO) private virtual network.
1717

articles/ai-services/agents/how-to/use-your-own-vnet.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ ms.custom: azure-ai-agents
1414

1515
# QuickStart: Create a new network-secured agent with user-managed identity
1616

17-
Azure AI Agent Service offers a standard agent configuration with private networking, allowing you to bring your own private virtual network. This setup creates an isolated network environment that lets you securely access data and perform actions while maintaining full control over your network infrastructure. This guide provides a step-by-step walkthrough of the setup process and outlines all necessary requirements.
17+
Azure AI Agent Service offers a standard agent configuration with private networking, allowing you to bring your own (BYO) private virtual network. This setup creates an isolated network environment that lets you securely access data and perform actions while maintaining full control over your network infrastructure. This guide provides a step-by-step walkthrough of the setup process and outlines all necessary requirements.
1818

1919
> [!NOTE]
20-
> Standard setup with private networking can only be configured by deploying the Bicep template. Once deployed, agents must be created using the SDK. You cannot use the UI to create agents in a project with private networking enabled.
20+
> Standard setup with private networking can only be configured by deploying the Bicep template. Once deployed, agents must be created using the SDK. You can't use the UI to create agents in a project with private networking enabled.
2121
22-
For more details [BYO Vnet overview](byo-vnet-overview.md).
22+
For more details, see the [BYO Vnet overview](byo-vnet-overview.md).
2323

2424
## Prerequisites
2525

2626
1. An Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services).
2727
2. [Python 3.8 or later](https://www.python.org/)
28-
3. Ensure that the individual deploying the template has the the role: **Azure AI Developer** assigned at the resource group level where the template is being deployed. [Learn more](https://learn.microsoft.com/azure/ai-studio/concepts/rbac-ai-studio)
29-
4. Additionally, to deploy the temaplete you need to have the preset role: **Role Based Access Administrator** at the subscription level. [Learn more](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles/privileged#role-based-access-control-administrator)
28+
3. Ensure that the individual deploying the template has the role: **Azure AI Developer** assigned at the resource group level where the template is being deployed. [Learn more](https://learn.microsoft.com/azure/ai-studio/concepts/rbac-ai-studio)
29+
4. Additionally, to deploy the template, you need to have the preset role: **Role Based Access Administrator** at the subscription level. [Learn more](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles/privileged#role-based-access-control-administrator)
3030
* Note: The **Owner** role at the subscription level satisfies this requirement.
3131
* Note: The specific admin role that is needed is: **'Microsoft.Authorization/roleAssignments/write'**
32-
1. Install [the Azure CLI and the machine learning extension](/azure/machine-learning/how-to-configure-cli). If you have the CLI already installed, make sure it's updated to the latest version.
33-
1. Register providers
32+
5. Install [the Azure CLI and the machine learning extension](/azure/machine-learning/how-to-configure-cli). If you have the CLI already installed, make sure it's updated to the latest version.
33+
6. Register providers
3434
The following providers must be registered:
3535

3636
* Microsoft.KeyVault
@@ -56,15 +56,16 @@ For more details [BYO Vnet overview](byo-vnet-overview.md).
5656
**Network Secured Setup**: Agents use customer-owned, single-tenant search and storage resources. With this setup, you have full control and visibility over these resources, but you incur costs based on your usage.
5757

5858
* Resources for the hub, project, storage account, key vault, AI Services, and Azure AI Search are created for you. The AI Services, AI Search, and Azure Blob Storage account are connected to your project/hub, and a gpt-4o-mini model is deployed in the westus2 region.
59-
* Customer-owned resources are secured with a provisioned managed network and authenticated with a User Managed Identity with the necessary RBAC permissions. Private links and DNS zones are created on behalf of the customer to ensure network connectivity.
59+
* Customer-owned resources are secured with a provisioned managed network and authenticated with a User Managed Identity with the necessary RBAC (Role-Based Access Control) permissions. Private links and DNS (Domain Name System) zones are created on behalf of the customer to ensure network connectivity.
6060

6161
<br/>
6262

6363
<details>
6464
<summary><b> Bicep Technical Details</b>
6565
</summary>
6666

67-
**The Bicep template automates the following configurations and resource provisions:*** Creates a User Assigned Identity. [Learn more](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-azp#create-a-user-assigned-managed-identity)
67+
**The Bicep template automates the following configurations and resource provisions:**
68+
* Creates a User Assigned Identity. [Learn more](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/how-manage-user-assigned-managed-identities?pivots=identity-mi-methods-azp#create-a-user-assigned-managed-identity)
6869
* The User Assigned Managed Identity requires the following Role-Based Access Roles:
6970
* KeyVault Secret Officer
7071
* KeyVault Contributor
@@ -137,7 +138,7 @@ For more details [BYO Vnet overview](byo-vnet-overview.md).
137138

138139
```
139140

140-
1. To customize other parameters, including the OpenAI model deployment, download and edit the azuredeploy.parameters.json file, then run:
141+
1. To customize other parameters, including the OpenAI model deployment, download, and edit the azuredeploy.parameters.json file, then run:
141142

142143
```console
143144
az deployment group create --resource-group {my_resource_group} --template-file main.bicep --parameters @azuredeploy.parameters.json
@@ -271,3 +272,4 @@ with project_client:
271272
# Delete the agent once done
272273
project_client.agents.delete_agent(agent.id)
273274
print("Deleted agent")
275+
```

0 commit comments

Comments
 (0)