Skip to content

Commit b8cddf1

Browse files
Merge pull request #546 from microsoft/dev
refactor: simplify resource naming, add tagging support, and improve AI Foundry reuse docs
2 parents 0e317d0 + dff46d7 commit b8cddf1

20 files changed

+537
-374
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
--resource-group ${{ env.RESOURCE_GROUP_NAME }} \
141141
--template-file infra/main.bicep \
142142
--parameters \
143-
environmentName="${{ env.SOLUTION_PREFIX }}" \
143+
solutionName="${{ env.SOLUTION_PREFIX }}" \
144144
secondaryLocation="northcentralus" \
145145
deploymentType="GlobalStandard" \
146146
gptModelName="gpt-4.1" \

docs/DeploymentGuide.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,13 @@ To adjust quota settings, follow these [steps](./AzureGPTQuotaSettings.md).
140140

141141
Guide to get your [Existing Workspace ID](/docs/re-use-log-analytics.md)
142142

143+
</details>
144+
<details>
145+
146+
<summary><b>Reusing an Existing Azure AI Foundry Project</b></summary>
147+
148+
Guide to get your [Existing Project ID](/docs/re-use-foundry-project.md)
149+
143150
</details>
144151

145152
### Deploying with AZD
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-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](../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_EXISTING_AI_PROJECT_RESOURCE_ID '<Existing AI Project Resource ID>'
40+
```
41+
Replace `<Existing AI 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-options--steps).

infra/abbreviations.json

Lines changed: 0 additions & 227 deletions
This file was deleted.

0 commit comments

Comments
 (0)