Skip to content

Commit 07da1dd

Browse files
Merge pull request #277627 from deeikele/main
Note on project storage connection initialization
2 parents 5017144 + a3b5273 commit 07da1dd

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

articles/ai-studio/how-to/create-projects.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,28 @@ To view settings for the project, use the `az ml workspace show` command. For ex
103103
az ml workspace show --name {my_project_name} --resource-group {my_resource_group}
104104
```
105105

106-
107106
---
108107

108+
## Project resource access
109+
110+
Common configurations on the hub are shared with your project, including connections, compute instances, and network access, so you can start developing right away.
111+
112+
In addition, a number of resources are only accessible by users in your project workspace:
113+
114+
1. Components including datasets, flows, indexes, deployed model API endpoints (open and serverless).
115+
1. Connections created by you under 'project settings'.
116+
1. Azure Storage blob containers, and a fileshare for data upload within your project. Access storage using the following connections:
117+
118+
| Data connection | Storage location | Purpose |
119+
| --- | --- | --- |
120+
| workspaceblobstore | {project-GUID}-blobstore | Default container for data upload |
121+
| workspaceartifactstore | {project-GUID}-blobstore | Stores components and metadata for your project such as model weights |
122+
| workspacefilestore | {project-GUID}-code | Hosts files created on your compute and using prompt flow |
123+
124+
> [!NOTE]
125+
> Storage connections are not created directly with the project when your storage account has public network access set to disabled. These are created instead when a first user accesses AI studio over a private network connection.
126+
127+
109128
## Next steps
110129

111130
- [Deploy an enterprise chat web app](../tutorials/deploy-chat-web-app.md)

0 commit comments

Comments
 (0)