Skip to content

Commit 3364500

Browse files
committed
fix links
1 parent 2e3d51b commit 3364500

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/ai-foundry/how-to/develop/planning.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ AI Foundry is built on the Azure platform, allowing you to customize security co
4545

4646
- **Customer-Managed Keys (CMK)**: Azure supports CMK for encrypting data at rest. AI Foundry supports CMK optionally for customers with strict compliance needs. [Learn more about CMK.](/security/benchmark/azure/baselines/azure-ai-foundry-security-baseline).
4747

48-
- **Authentication & Authorization**: AI Foundry supports both **API key-based access** for simple integration and **Azure RBAC** for fine-grained control. Azure enforces a clear separation between the **control plane** (resource management) and the **data plane** (model and data access). Start with built-in roles, and define custom roles as needed. [Learn more about authentication.](https://learn.microsoft.com/en-us/security/benchmark/azure/baselines/azure-ai-foundry-security-baseline).
48+
- **Authentication & Authorization**: AI Foundry supports both **API key-based access** for simple integration and **Azure RBAC** for fine-grained control. Azure enforces a clear separation between the **control plane** (resource management) and the **data plane** (model and data access). Start with built-in roles, and define custom roles as needed. [Learn more about authentication.](/security/benchmark/azure/baselines/azure-ai-foundry-security-baseline).
4949

5050
- **Templates**: Use ARM templates or Bicep to automate secure deployments. Explore the [sample templates](/security/benchmark/azure/baselines/azure-ai-foundry-security-baseline).
5151

@@ -86,7 +86,7 @@ Effective access management is foundational to a secure and scalable AI Foundry
8686

8787
Azure AI Foundry supports **connections**, which are reusable configurations that enable access to application components on Azure and non-Azure services. These connections also act as **identity brokers**, allowing Foundry to authenticate to external systems using managed identities or service principals on behalf of project users.
8888

89-
Connections can be created at the **AI Foundry resource level**—ideal for shared services like Azure Storage or Key Vault—or scoped to a **specific project**, which is recommended for sensitive or project-specific integrations. This flexibility allows teams to balance reuse and isolation based on their needs. [Learn more about connections in AI Foundry](https://learn.microsoft.com/en-us/security/benchmark/azure/baselines/azure-ai-foundry-security-baseline).
89+
Connections can be created at the **AI Foundry resource level**—ideal for shared services like Azure Storage or Key Vault—or scoped to a **specific project**, which is recommended for sensitive or project-specific integrations. This flexibility allows teams to balance reuse and isolation based on their needs. [Learn more about connections in AI Foundry](/security/benchmark/azure/baselines/azure-ai-foundry-security-baseline).
9090

9191
Connection authentication can be configured to use either shared access tokens—such as Microsoft Entra ID managed identities or API keys—for simplified management and onboarding, or user tokens via Entra ID passthrough, which offer greater control when accessing sensitive data sources.
9292

@@ -114,45 +114,45 @@ Effective governance in Azure AI Foundry ensures secure, compliant, and cost-eff
114114

115115
## Configure and optimize model deployments
116116

117-
When deploying models in AI Foundry, teams can choose between standard and provisioned [deployment types](.././ai-services/openai/how-to/deployment-types.md). Standard deployments are ideal for development and experimentation, offering flexibility and ease of setup. Provisioned deployments are recommended for production scenarios where predictable performance, cost control, and model version pinning are required.
117+
When deploying models in AI Foundry, teams can choose between standard and provisioned [deployment types](.././../ai-services/openai/how-to/deployment-types.md). Standard deployments are ideal for development and experimentation, offering flexibility and ease of setup. Provisioned deployments are recommended for production scenarios where predictable performance, cost control, and model version pinning are required.
118118

119-
To support cross-region scenarios and let you access existing model deployments, AI Foundry allows [connections](connections-add.md?pivots=fdp-project) to model deployments hosted in other Foundry or Azure OpenAI instances. This enables teams to centralize deployments for experimentation while still enabling access from distributed projects. For production workloads, consider for use cases to manage its own deployments to ensure tighter control over model lifecycle, versioning, and rollback strategies.
119+
To support cross-region scenarios and let you access existing model deployments, AI Foundry allows [connections](../connections-add.md?pivots=fdp-project) to model deployments hosted in other Foundry or Azure OpenAI instances. This enables teams to centralize deployments for experimentation while still enabling access from distributed projects. For production workloads, consider for use cases to manage its own deployments to ensure tighter control over model lifecycle, versioning, and rollback strategies.
120120

121-
To prevent overuse and ensure fair resource allocation, you can apply [Tokens Per Minute (TPM) limits at the deployment level](.././ai-services/openai/concepts/provisioned-throughput.md?tabs=global-ptum). TPM limits help control consumption, protect against accidental spikes, and align usage with project budgets or quotas. Consider setting conservative limits for shared deployments and higher thresholds for critical production services.
121+
To prevent overuse and ensure fair resource allocation, you can apply [Tokens Per Minute (TPM) limits at the deployment level](../../../ai-services/openai/concepts/provisioned-throughput.md?tabs=global-ptum). TPM limits help control consumption, protect against accidental spikes, and align usage with project budgets or quotas. Consider setting conservative limits for shared deployments and higher thresholds for critical production services.
122122

123123
## Access extended functionality with Azure AI Hub
124124

125125
While an Azure AI Foundry resource alone gives you access to most AI Foundry functionality, select capabilities are currently only available in combination with an Azure AI hub resource powered by Azure Machine Learning. These are capabilities lower in the AI development stack, focused on model customization.
126126

127-
Hub resources require their own project types that can also be accessed using the Azure Machine Learning Studio/SDK/CLI. To help plan your deployment, see [this table](../what-is-azure-ai-foundry.md#which-type-of-project-do-i-need) and [choose a resource type](../concepts/resource-types.md), for an overview of supported capabilities.
127+
Hub resources require their own project types that can also be accessed using the Azure Machine Learning Studio/SDK/CLI. To help plan your deployment, see [this table](../../what-is-azure-ai-foundry.md#which-type-of-project-do-i-need) and [choose a resource type](../../concepts/resource-types.md), for an overview of supported capabilities.
128128

129129
A hub resource is deployed side-by-side with your AI Foundry resource and takes a dependency on your AI Foundry resource to provide access to select tools and models.
130130

131131
## Learn more
132132

133133
### Secure the AI Foundry Environment
134134

135-
- Identity & Managed Identity: [Configure managed identity in Azure AI Foundry](.././ai-services/openai/how-to/managed-identity.md)
136-
- Networking: [Use a virtual network with Azure AI Foundry](../agents/how-to/virtual-networks.md)
137-
- Customer-Managed Keys (CMK): [Customer-managed keys in Azure AI Foundry](../concepts/encryption-keys-portal.md)
138-
- Authentication & RBAC: [Role-based access control in Azure AI Foundry](../concepts/rbac-azure-ai-foundry.md)
139-
- Sample Templates: [Create an AI Foundry hub using a Bicep template](create-azure-ai-hub-template.md)
135+
- Identity & Managed Identity: [Configure managed identity in Azure AI Foundry](../../../ai-services/openai/how-to/managed-identity.md)
136+
- Networking: [Use a virtual network with Azure AI Foundry](../../agents/how-to/virtual-networks.md)
137+
- Customer-Managed Keys (CMK): [Customer-managed keys in Azure AI Foundry](../../concepts/encryption-keys-portal.md)
138+
- Authentication & RBAC: [Role-based access control in Azure AI Foundry](../../concepts/rbac-azure-ai-foundry.md)
139+
- Sample Templates: [Create an AI Foundry hub using a Bicep template](../create-azure-ai-hub-template.md)
140140

141141
### Establish Connectivity with Other Azure Services
142142

143143
- Overview of Connections: [Add a new connection in Azure AI Foundry](connections-add.md)
144-
- Project vs. Resource-Level Connections: [Configure a connection to use Azure AI Foundry Models](../model-inference/how-to/configure-project-connection.md)
144+
- Project vs. Resource-Level Connections: [Configure a connection to use Azure AI Foundry Models](../../model-inference/how-to/configure-project-connection.md)
145145

146146
### Governance
147147

148148
- Model Access Control with Azure Policy: [Control model deployment with built-in policies](built-in-policy-model-deployment.md)
149149
- Cost Management: [Plan and manage costs for Azure AI Foundry](costs-plan-manage.md)
150150
- Azure Monitor for Usage Tracking: [Monitor your Generative AI applications](monitor-applications.md)
151-
- Azure Log Analytics for Logging: [Enable diagnostic logging for Azure AI services](../../ai-services/diagnostic-logging.md)
151+
- Azure Log Analytics for Logging: [Enable diagnostic logging for Azure AI services](../../../ai-services/diagnostic-logging.md)
152152

153153
### Share Reserved Capacity Across Business Groups
154154

155-
- Cross-Resource Model Access: [Use Azure AI services in Azure AI Foundry](../../ai-services/connect-services-ai-foundry-portal.md)
155+
- Cross-Resource Model Access: [Use Azure AI services in Azure AI Foundry](../../../ai-services/connect-services-ai-foundry-portal.md)
156156
- Shared PTU Deployments: [Provisioned Throughput Reservations in Azure AI Foundry](/azure/cost-management-billing/reservations/azure-ai-foundry)
157157

158158
### Azure Landing zones

0 commit comments

Comments
 (0)