[ ABORT TO HUD ]
SEQ. 1
SEQ. 2
SEQ. 3
SEQ. 4
Creating Your First Foundry Resource
Step-by-Step: Create a Foundry Resource
There are two ways to create your Foundry resource: via the Azure Portal or via the Foundry Portal.
Method 1: Foundry Portal (Recommended)
- Navigate to
ai.azure.com - Click "+ Create project"
- Enter a project name and select your subscription
- The portal will automatically create the underlying Foundry resource
- Choose your region (East US recommended for broadest availability)
- Click Create
Method 2: Azure Portal
- Go to
portal.azure.com - Search for "Azure AI Foundry" or "AI Services"
- Click Create
- Fill in: Subscription, Resource Group, Region, Name
- Review + Create
Method 3: Azure CLI
az cognitiveservices account create \ --name my-foundry-resource \ --resource-group my-rg \ --kind AIServices \ --sku S0 \ --location eastus
🚧 Important: When you create a Foundry resource, it automatically provisions several dependent resources: Azure Storage Account (for artifacts), Azure Key Vault (for secrets), and optionally Application Insights (for monitoring). These will appear in your resource group.
⌨ HANDS-ON LABProvision Foundry with the Azure CLI
⭐ +200 XPSkip the portal. Provision a Foundry (AIServices) resource full from the terminal: authenticate, create a resource group, then the resource itself.
1Authenticate the Azure CLI.
2Create a resource group (any name + location).
3Create the Foundry resource: a Cognitive Services account with kind AIServices.
OBJECTIVE 1 / 3 — type "hint" if stuck
FOUNDRY VERIFICATION
QUERY 1 // 1
What dependent resources does Foundry automatically provision?
Only a database
Storage Account, Key Vault, and optionally Application Insights
A virtual machine
Nothing - it's serverless only