Skip to content

Commit 7d0bb1e

Browse files
add reuse foundry project documentation
1 parent fbe2cb9 commit 7d0bb1e

File tree

5 files changed

+53
-1
lines changed

5 files changed

+53
-1
lines changed

documents/DeploymentGuide.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ When you start the deployment, most parameters will have **default values**, but
119119
| **Embedding Model** | Default: **text-embedding-ada-002**. | text-embedding-ada-002 |
120120
| **Embedding Model Capacity** | Set the capacity for **embedding models** (in thousands). | 80k |
121121
| **Image Tag** | Docker image tag to deploy. Common values: `latest`, `dev`, `hotfix`. | latest |
122-
| **Existing Log Analytics Workspace** | To reuse an existing Log Analytics Workspace ID. | *(empty)* |
123122
| **Use Local Build** | Boolean flag to determine if local container builds should be used. | false |
123+
| **Existing Log Analytics Workspace** | To reuse an existing Log Analytics Workspace ID. | *(empty)* |
124+
| **Existing Azure AI Foundry Project** | To reuse an existing Azure AI Foundry Project ID instead of creating a new one. | *(empty)* |
124125

125126

126127

@@ -144,6 +145,13 @@ Depending on your subscription quota and capacity, you can [adjust quota setting
144145

145146
Guide to get your [Existing Workspace ID](/documents/re-use-log-analytics.md)
146147

148+
</details>
149+
<details>
150+
151+
<summary><b>Reusing an Existing Azure AI Foundry Project</b></summary>
152+
153+
Guide to get your [Existing Project ID](/documents/re-use-foundry-project.md)
154+
147155
</details>
148156

149157
### Deploying with AZD
331 KB
Loading
94.9 KB
Loading
196 KB
Loading
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
[← Back to *DEPLOYMENT* guide](/documents/DeploymentGuide.md#deployment-options--steps)
2+
3+
# Reusing an Existing Azure AI Foundry Project
4+
To configure your environment to use an existing Azure AI Foundry Project, follow these steps:
5+
---
6+
### 1. Go to Azure Portal
7+
Go to https://portal.azure.com
8+
9+
### 2. Search for Azure AI Foundry
10+
In the search bar at the top, type "Azure AI Foundry" and click on it. Then select the Foundry service instance where your project exists.
11+
12+
![alt text](../documents/images/re_use_foundry_project/azure_ai_foundry_list.png)
13+
14+
### 3. Navigate to Projects under Resource Management
15+
On the left sidebar of the Foundry service blade:
16+
17+
- Expand the Resource Management section
18+
- Click on Projects (this refers to the active Foundry project tied to the service)
19+
20+
### 4. Click on the Project
21+
From the Projects view: Click on the project name to open its details
22+
23+
Note: You will see only one project listed here, as each Foundry service maps to a single project in this accelerator
24+
25+
![alt text](../documents/images/re_use_foundry_project/navigate_to_projects.png)
26+
27+
### 5. Copy Resource ID
28+
In the left-hand menu of the project blade:
29+
30+
- Click on Properties under Resource Management
31+
- Locate the Resource ID field
32+
- Click on the copy icon next to the Resource ID value
33+
34+
![alt text](../documents/images/re_use_foundry_project/project_resource_id.png)
35+
36+
### 6. Set the Foundry Project Resource ID in Your Environment
37+
Run the following command in your terminal
38+
```bash
39+
azd env set AZURE_ENV_FOUNDRY_PROJECT_ID '<Existing Foundry Project Resource ID>'
40+
```
41+
Replace `<Existing Foundry Project Resource ID>` with the value obtained from Step 5.
42+
43+
### 7. Continue Deployment
44+
Proceed with the next steps in the [deployment guide](/documents/DeploymentGuide.md#deployment-options--steps).

0 commit comments

Comments
 (0)