Skip to content

Commit 5a89ea0

Browse files
authored
Add documentation for simple Foundry sample and stable API versions (#268)
* basic terraform sample * remove sub id * remove preview api versions * update readme
1 parent fee562e commit 5a89ea0

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

samples/microsoft/infrastructure-setup-terraform/00-basic/code/main.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ resource "azurerm_resource_group" "rg" {
2222
## Create the AI Foundry resource
2323
##
2424
resource "azapi_resource" "ai_foundry" {
25-
26-
type = "Microsoft.CognitiveServices/accounts@2025-04-01-preview"
25+
type = "Microsoft.CognitiveServices/accounts@2025-06-01"
2726
name = "aifoundry${random_string.unique.result}"
2827
parent_id = azurerm_resource_group.rg.id
2928
location = var.location
@@ -77,7 +76,7 @@ resource "azurerm_cognitive_deployment" "aifoundry_deployment_gpt_4o" {
7776
## Create AI Foundry project
7877
##
7978
resource "azapi_resource" "ai_foundry_project" {
80-
type = "Microsoft.CognitiveServices/accounts/projects@2025-04-01-preview"
79+
type = "Microsoft.CognitiveServices/accounts/projects@2025-06-01"
8180
name = "project${random_string.unique.result}"
8281
parent_id = azapi_resource.ai_foundry.id
8382
location = var.location

samples/microsoft/infrastructure-setup-terraform/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ Azure AI Agent Service offers three deployment modes optimized for agent workloa
1313
- Standard Setup with Bring Your Own (BYO) Virtual Network:
1414
Includes everything in the Standard Setup, with the added ability to operate entirely within your own virtual network. This setup supports Bring Your Own Virtual Network (BYO virtual network), allowing for strict control over data movement and helping prevent data exfiltration by keeping traffic confined to your network environment.
1515

16+
### [00-basic/](./00-basic/README.md)
17+
18+
- Deploys Azure AI Foundry with basic setup
19+
- Project and deployment for getting started
20+
- Public networking
21+
- Microsoft-managed file storage
22+
- Microsoft-managed resources for storing Agents threads and messages
23+
1624
### [15a-private-network-standard-agent-setup/](./15a-private-network-standard-agent-setup/README.md)
1725

1826
- Deploys a Network Secured Standard Agent environment:

0 commit comments

Comments
 (0)