Skip to content

Commit 22f8109

Browse files
committed
fix link issues
1 parent ee7b524 commit 22f8109

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

articles/ai-foundry/concepts/architecture.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Azure AI Foundry resource is the primary resource for Azure AI and is recommende
3434

3535
[!INCLUDE [Resource provider kinds](../includes/resource-provider-kinds.md)]
3636

37-
Resource types under the same provider namespace share the same control plane, hence use similar [Azure RBAC](#link) actions, networking configurations and aliases for Azure Policy configuration. If you are upgrading from Azure OpenAI to Azure AI Foundry, this means your existing custom Azure policies and Azure RBAC options apply.
37+
Resource types under the same provider namespace share the same control plane, hence use similar [Azure RBAC](https://learn.microsoft.com/azure/role-based-access-control/) actions, networking configurations and aliases for Azure Policy configuration. If you are upgrading from Azure OpenAI to Azure AI Foundry, this means your existing custom Azure policies and Azure RBAC options apply.
3838

3939
## Security-driven separation of concerns
4040

@@ -48,15 +48,15 @@ Azure AI Foundry enforces a clear separation between management and development
4848

4949
## Computing infrastructure
5050

51-
Azure AI Foundry leverages a flexible compute architecture to support diverse [model access](../concepts/foundry-models-overview) and workload execution scenarios.
51+
Azure AI Foundry leverages a flexible compute architecture to support diverse [model access](../concepts/foundry-models-overview.md) and workload execution scenarios.
5252

5353
- Model Hosting Architecture: Foundry models can be accessed in different ways:
5454

5555
1. [Standard deployment in Azure AI Foundry resources](deployments-overview.md#standard-deployment-in-azure-ai-foundry-resources)
5656
1. [Deployment to serverless API endpoints](deployments-overview.md#serverless-api-endpoint)
57-
1. [Deployment to managed computes](deployments-overview#managed-compute)
57+
1. [Deployment to managed computes](deployments-overview.md#managed-compute)
5858

59-
For an overview of data, privacy and security considerations with these deployment options, see [Data, privacy, and security for use of models](../how-to/concept-data-privacy?branch=main)
59+
For an overview of data, privacy and security considerations with these deployment options, see [Data, privacy, and security for use of models](../how-to/concept-data-privacy.md)
6060

6161
- **Workload Execution:** Agents, Evaluations and Batch jobs are executed as managed container compute, fully managed by Microsoft.
6262

@@ -84,5 +84,5 @@ Users can optionally connect their own Azure Storage accounts. Foundry tools can
8484

8585
* [Azure AI Foundry Rollout Across My Organization](planning.md)
8686
* [Customer-managed keys for encryption with Azure AI Foundry](encryption-keys-portal.md)
87-
* [How to configure a private link for Azure AI Foundry](configure-private-link.md)
87+
* [How to configure a private link for Azure AI Foundry](../how-to/configure-private-link.md)
8888
* [Bring-your-own resources with Agent service](../agents/how-to/use-your-own-resources.md)

articles/ai-foundry/how-to/create-resource-terraform.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ai-usage: ai-assisted
2020

2121
In this article, you use Terraform to create an [Azure AI Foundry](https://ai.azure.com/?cid=learnDocs) resource. You will learn how to use Terraform to create AI Foundry management configurations including projects, deployments and connections.
2222

23-
The examples used in article use the [AzAPI](#link-to-do) Terraform provider. Similar [AzureRM](#link-to-do) provider support is available via the classic AzureRM_AIServices module, but is limited in functionality to resource and deployment creation.
23+
The examples used in article use the [AzAPI](https://learn.microsoft.com/azure/developer/terraform/overview-azapi-provider) Terraform provider. Similar [AzureRM](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs) provider support is available via the classic AzureRM_AIServices module, but is limited in functionality to resource and deployment creation.
2424

2525
[!INCLUDE [About Terraform](~/azure-dev-docs-pr/articles/terraform/includes/abstract.md)]
2626

@@ -50,23 +50,19 @@ The examples used in article use the [AzAPI](#link-to-do) Terraform provider. Si
5050

5151
1. Create a file named `providers.tf` and insert the following code.
5252

53-
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/
54-
15a-private-network-standard-agent-setup/code/providers.tf":::
53+
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/15a-private-network-standard-agent-setup/code/providers.tf":::
5554

5655
1. Create a file named `main.tf` and insert the following code.
5756

58-
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/
59-
15a-private-network-standard-agent-setup/code/main.tf":::
57+
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/15a-private-network-standard-agent-setup/code/main.tf":::
6058

6159
1. Create a file named `variables.tf` and insert the following code.
6260

63-
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/
64-
15a-private-network-standard-agent-setup/code/variables.tf":::
61+
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/15a-private-network-standard-agent-setup/code/variables.tf":::
6562

6663
1. Create a file named `outputs.tf` and insert the following code.
6764

68-
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/
69-
15a-private-network-standard-agent-setup/code/outputs.tf":::
65+
:::code language="Terraform" source="~/foundry-samples-main/samples/microsoft/infrastructure-setup-terraform/15a-private-network-standard-agent-setup/code/outputs.tf":::
7066

7167
## Initialize Terraform
7268

0 commit comments

Comments
 (0)