Skip to content

Commit 2595c2d

Browse files
Merge pull request microsoft#339 from microsoft/psl_add_resuse_foundry_project_docs
docs: Added Documentation for Reusing Azure AI Foundry Project
2 parents 8697c6c + 140a32e commit 2595c2d

File tree

6 files changed

+56
-3
lines changed

6 files changed

+56
-3
lines changed

docs/DeploymentGuide.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ When you start the deployment, most parameters will have **default values**, but
153153
| **GPT Model Capacity** | Sets the GPT model capacity. | 150 |
154154
| **Image Tag** | Docker image tag used for container deployments. | latest |
155155
| **Enable Telemetry** | Enables telemetry for monitoring and diagnostics. | true |
156-
156+
| **Existing Log Analytics Workspace** | To reuse an existing Log Analytics Workspace ID instead of creating a new one. | *(none)* |
157+
| **Existing Azure AI Foundry Project** | To reuse an existing Azure AI Foundry Project ID instead of creating a new one. | *(none)* |
157158

158159
</details>
159160

@@ -176,6 +177,14 @@ To adjust quota settings, follow these [steps](./AzureGPTQuotaSettings.md).
176177

177178
</details>
178179

180+
<details>
181+
182+
<summary><b>Reusing an Existing Azure AI Foundry Project</b></summary>
183+
184+
Guide to get your [Existing Project ID](/docs/re-use-foundry-project.md)
185+
186+
</details>
187+
179188
### Deploying with AZD
180189

181190
Once you've opened the project in [Codespaces](#github-codespaces), [Dev Containers](#vs-code-dev-containers), or [locally](#local-environment), you can deploy it to Azure by following these steps:
331 KB
Loading
94.9 KB
Loading
196 KB
Loading

docs/re-use-foundry-project.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
[← Back to *DEPLOYMENT* guide](/docs/DeploymentGuide.md#deployment-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](../docs/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](../docs/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](../docs/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](/docs/DeploymentGuide.md#deployment-steps).

docs/re-use-log-analytics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[← Back to *DEPLOYMENT* guide](/docs/DeploymentGuide.md#deployment-options--steps)
1+
[← Back to *DEPLOYMENT* guide](/docs/DeploymentGuide.md#deployment-steps)
22

33
# Reusing an Existing Log Analytics Workspace
44
To configure your environment to use an existing Log Analytics Workspace, follow these steps:
@@ -28,4 +28,4 @@ azd env set AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID '<Existing Log Analytics Worksp
2828
Replace `<Existing Log Analytics Workspace Id>` with the value obtained from Step 3.
2929

3030
### 5. Continue Deployment
31-
Proceed with the next steps in the [deployment guide](/docs/DeploymentGuide.md#deployment-options--steps).
31+
Proceed with the next steps in the [deployment guide](/docs/DeploymentGuide.md#deployment-steps).

0 commit comments

Comments
 (0)