Skip to content

Commit 431b7d2

Browse files
Agents/setup/pna (#210)
PNA disabled and Private Endpoint
1 parent eed13d1 commit 431b7d2

File tree

7 files changed

+581
-209
lines changed

7 files changed

+581
-209
lines changed

scenarios/Agents/setup/network-secured-agent/README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,34 @@ languages:
2929

3030
This infrastructure-as-code (IaC) solution deploys a network-secured Azure AI agent environment with private networking, managed identities, and role-based access control (RBAC).
3131

32+
## Note:
33+
Make sure you have an active Azure subscription that allows registering resource providers.
34+
Subnet delegation requires the Microsoft.App provider to be registered in your subscription. If it's not already registered, run the command below:
35+
36+
```
37+
Register-AzResourceProvider -ProviderNamespace Microsoft.App
38+
```
39+
40+
In case Hub/Project workspace need Public Network Disabled select from dropdown or edit in bicep.
41+
42+
```
43+
hubPublicNetworkAccess = Disabled
44+
```
45+
46+
When Hub and Project workspace Public Network Disabled, the project connection string output from the deployment will look like, this should be used data plane operations
47+
48+
```
49+
PROJECT_CONNECTION_STRING='<project_workspace_id>.workspace.japaneast.api.azureml.ms;12345678-abcd-1234-9fc6-62780b3d3e05;my-resource-group;my-project-name'
50+
```
51+
52+
It follows format
53+
```<HostName>;<AzureSubscriptionId>;<ResourceGroup>;<ProjectName>```
54+
HostName can be found by navigating to your discovery_url and removing the leading "https://" and trailing "/discovery"
55+
To find your discovery_url, run the CLI command:
56+
```az ml workspace show -n {project_name} --resource-group {resource_group_name} --query discovery_url```
57+
Customer needs to login to Azure subscription via Azure CLI and set the environment variables
58+
59+
3260
## Architecture Overview
3361

3462
### Network Security Design

0 commit comments

Comments
 (0)