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.