Skip to content

Commit 3d8dcdb

Browse files
Merge pull request #954 from microsoft/psl-fixBrokenLinks-dk
docs: document updates for fixing broken links
2 parents e9cc694 + 56cc392 commit 3d8dcdb

5 files changed

Lines changed: 9 additions & 10 deletions

File tree

docs/CustomizingAzdParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ By default this template will use the environment name as the prefix to prevent
2626
| `AZURE_ENV_IMAGETAG` | string | `latest_v3` | Docker image tag used for container deployments. |
2727
| `AZURE_ENV_ENABLE_TELEMETRY` | bool | `true` | Enables telemetry for monitoring and diagnostics. |
2828
| `AZURE_EXISTING_AIPROJECT_RESOURCE_ID` | string | `<Existing Workspace Id>` | Set this if you want to reuse an AI Foundry Project instead of creating a new one. |
29-
| `AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID` | string | Guide to get your [Existing Workspace ID](/docs/re-use-log-analytics.md) | Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
29+
| `AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID` | string | Guide to get your [Existing Workspace ID](re-use-log-analytics.md) | Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
3030
| `AZURE_ENV_VM_ADMIN_USERNAME` | string | `take(newGuid(), 20)` | The administrator username for the virtual machine. |
3131
| `AZURE_ENV_VM_ADMIN_PASSWORD` | string | `newGuid()` | The administrator password for the virtual machine. |
3232
| `AZURE_ENV_VM_SIZE` | string | `Standard_D2s_v5` | The size of the virtual machine deployed with private networking. |

docs/azure_app_service_auth_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This document provides step-by-step instructions to configure Azure App Registra
2222
![Add Provider](./images/azure-app-service-auth-setup/AppAuthIdentityProvider.png)
2323

2424
4. Select the first option `Microsoft Entra Id` from the drop-down list and select `client secret expiration` under App registration.
25-
> NOTE: If `Create new app registration` is disabled, then go to [Create new app registration](/docs/create_new_app_registration.md) and come back to this step to complete the app authentication.
25+
> NOTE: If `Create new app registration` is disabled, then go to [Create new app registration](create_new_app_registration.md) and come back to this step to complete the app authentication.
2626
2727
![Add Provider](./images/azure-app-service-auth-setup/AppAuthIdentityProviderAdd.png)
2828

docs/re-use-foundry-project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[← Back to *DEPLOYMENT* guide](/docs/DeploymentGuide.md#deployment-steps)
1+
[← Back to *DEPLOYMENT* guide](DeploymentGuide.md#deployment-steps)
22

33
# Reusing an Existing Azure AI Foundry Project
44
To configure your environment to use an existing Azure AI Foundry Project, follow these steps:
@@ -41,7 +41,7 @@ azd env set AZURE_EXISTING_AIPROJECT_RESOURCE_ID '<Existing Foundry Project Reso
4141
Replace `<Existing Foundry Project Resource ID>` with the value obtained from Step 5.
4242

4343
### 7. Continue Deployment
44-
Proceed with the next steps in the [deployment guide](/docs/DeploymentGuide.md#deployment-steps).
44+
Proceed with the next steps in the [deployment guide](DeploymentGuide.md#deployment-steps).
4545

4646
> **Note:**
4747
> After deployment, if you want to access agents created by the accelerator via the Azure AI Foundry Portal, or if you plan to debug or run the application locally, you must assign yourself either the **Azure AI User** or **Azure AI Developer** role for the Foundry resource.

docs/re-use-log-analytics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[← Back to *DEPLOYMENT* guide](/docs/DeploymentGuide.md#deployment-steps)
1+
[← Back to *DEPLOYMENT* guide](DeploymentGuide.md#deployment-steps)
22

33
# Reusing an Existing Log Analytics Workspace
44
To configure your environment to use an existing Log Analytics Workspace, follow these steps:
@@ -28,4 +28,4 @@ azd env set AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID '<Existing Log Analyt
2828
Replace `<Existing Log Analytics Workspace Id>` with the value obtained from Step 3.
2929

3030
### 5. Continue Deployment
31-
Proceed with the next steps in the [deployment guide](/docs/DeploymentGuide.md#deployment-steps).
31+
Proceed with the next steps in the [deployment guide](DeploymentGuide.md#deployment-steps).

next-steps.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To troubleshoot any issues, see [troubleshooting](#troubleshooting).
1717

1818
### Configure environment variables for running services
1919

20-
Environment variables can be configured by modifying the `env` settings in [resources.bicep](./infra/old/resources.bicep).
20+
Environment variables can be configured by modifying the `env` settings in [main.bicep](./infra/main.bicep).
2121
To define a secret, add the variable as a `secretRef` pointing to a `secrets` entry or a stored KeyVault secret.
2222

2323
### Configure CI/CD pipeline
@@ -37,12 +37,11 @@ To describe the infrastructure and application, `azure.yaml` along with Infrastr
3737
```yaml
3838
- azure.yaml # azd project configuration
3939
- infra/ # Infrastructure-as-code Bicep files
40-
- main.bicep # Subscription level resources
41-
- resources.bicep # Primary resource group resources
40+
- main.bicep # Primary resource deployment
4241
- modules/ # Library modules
4342
```
4443
45-
The resources declared in [resources.bicep](./infra/old/resources.bicep) are provisioned when running `azd up` or `azd provision`.
44+
The resources declared in [main.bicep](./infra/main.bicep) are provisioned when running `azd up` or `azd provision`.
4645
This includes:
4746

4847

0 commit comments

Comments
 (0)