Skip to content

Commit fa07464

Browse files
authored
Merge pull request #194429 from KarlErickson/karler-fix-links
fixed incorrect links
2 parents d8e666c + 4a90fcb commit fa07464

7 files changed

+14
-14
lines changed

articles/spring-cloud/connect-managed-identity-to-azure-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ Rebuild the app and deploy it to the Azure Spring Cloud app provisioned in the s
5858

5959
* [How to access Storage blob with managed identity in Azure Spring Cloud](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/tree/master/managed-identity-storage-blob)
6060
* [How to enable system-assigned managed identity for applications in Azure Spring Cloud](./how-to-enable-system-assigned-managed-identity.md)
61-
* [Learn more about managed identities for Azure resources](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/active-directory/managed-identities-azure-resources/overview.md)
61+
* [Learn more about managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md)
6262
* [Authenticate Azure Spring Cloud with Key Vault in GitHub Actions](./github-actions-key-vault.md)

articles/spring-cloud/how-to-elastic-apm-java-agent-monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This article explains how to use Elastic APM Agent to monitor Spring Boot applic
1818
With the Elastic Observability Solution, you can achieve unified observability to:
1919

2020
* Monitor apps using the Elastic APM Java Agent and using persistent storage with Azure Spring Cloud.
21-
* Use diagnostic settings to ship Azure Spring Cloud logs to Elastic. For more information, see [Analyze logs with Elastic (ELK) using diagnostics settings](https://github.com/hemantmalik/azure-docs/blob/master/articles/spring-cloud/how-to-elastic-diagnostic-settings.md).
21+
* Use diagnostic settings to ship Azure Spring Cloud logs to Elastic. For more information, see [Analyze logs with Elastic (ELK) using diagnostics settings](how-to-elastic-diagnostic-settings.md).
2222

2323
The following video introduces unified observability for Spring Boot applications using Elastic.
2424

articles/spring-cloud/how-to-enable-system-assigned-managed-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,5 @@ az spring-cloud app identity remove \
118118

119119
## Next steps
120120

121-
* [Learn more about managed identities for Azure resources](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/active-directory/managed-identities-azure-resources/overview.md)
121+
* [Learn more about managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md)
122122
* [How to use managed identities with Java SDK](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples)

articles/spring-cloud/how-to-manage-user-assigned-managed-identities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,5 @@ For user-assigned managed identity limitations, see [Quotas and service plans fo
120120
## Next steps
121121

122122
* [Access Azure Key Vault with managed identities in Spring boot starter](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/spring/azure-spring-boot-starter-keyvault-secrets/README.md#use-msi--managed-identities)
123-
* [Learn more about managed identities for Azure resources](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/active-directory/managed-identities-azure-resources/overview.md)
123+
* [Learn more about managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md)
124124
* [How to use managed identities with Java SDK](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples)

articles/spring-cloud/how-to-outbound-public-ip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ az spring-cloud show --resource-group <group_name> --name <service_name> --query
4545

4646
## Next steps
4747

48-
* [Learn more about managed identities for Azure resources](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/active-directory/managed-identities-azure-resources/overview.md)
48+
* [Learn more about managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md)
4949
* [Learn more about key vault in Azure Spring Cloud](./tutorial-managed-identities-key-vault.md)

articles/spring-cloud/tutorial-managed-identities-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,5 +169,5 @@ This sample will invoke the Http triggered function by first requesting an acces
169169
## Next steps
170170
171171
* [How to enable system-assigned managed identity for applications in Azure Spring Cloud](./how-to-enable-system-assigned-managed-identity.md)
172-
* [Learn more about managed identities for Azure resources](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/active-directory/managed-identities-azure-resources/overview.md)
172+
* [Learn more about managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md)
173173
* [Configure client apps to access your App Service](../app-service/configure-authentication-provider-aad.md#configure-client-apps-to-access-your-app-service)

articles/spring-cloud/tutorial-managed-identities-key-vault.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: devx-track-java, devx-track-azurecli
1717

1818
This article shows you how to create a managed identity for an Azure Spring Cloud app and use it to access Azure Key Vault.
1919

20-
Azure Key Vault can be used to securely store and tightly control access to tokens, passwords, certificates, API keys, and other secrets for your app. You can create a managed identity in Azure Active Directory (AAD), and authenticate to any service that supports AAD authentication, including Key Vault, without having to display credentials in your code.
20+
Azure Key Vault can be used to securely store and tightly control access to tokens, passwords, certificates, API keys, and other secrets for your app. You can create a managed identity in Azure Active Directory (Azure AD), and authenticate to any service that supports Azure AD authentication, including Key Vault, without having to display credentials in your code.
2121

2222
The following video describes how to manage secrets using Azure Key Vault.
2323

@@ -150,7 +150,7 @@ This app will have access to get secrets from Azure Key Vault. Use the starter a
150150
}
151151
```
152152
153-
If you open pom.xml, you will see the dependency of `azure-keyvault-secrets-spring-boot-starter`. Add this dependency to your project in pom.xml.
153+
If you open the *pom.xml* file, you'll see the dependency `azure-keyvault-secrets-spring-boot-starter`. Add this dependency to your project in the *pom.xml* file.
154154
155155
```xml
156156
<dependency>
@@ -177,11 +177,11 @@ This app will have access to get secrets from Azure Key Vault. Use the starter a
177177
curl https://myspringcloud-springapp.azuremicroservices.io/get
178178
```
179179
180-
You will see the message `Successfully got the value of secret connectionString from Key Vault https://<your-keyvault-name>.vault.azure.net/: jdbc:sqlserver://SERVER.database.windows.net:1433;database=DATABASE;`.
180+
you'll see the message `Successfully got the value of secret connectionString from Key Vault https://<your-keyvault-name>.vault.azure.net/: jdbc:sqlserver://SERVER.database.windows.net:1433;database=DATABASE;`.
181181
182182
## Build sample Spring Boot app with Java SDK
183183
184-
This sample can set and get secrets from Azure Key Vault. The [Azure Key Vault Secret client library for Java](/java/api/overview/azure/security-keyvault-secrets-readme) provides Azure Active Directory token authentication support across the Azure SDK. It provides a set of `TokenCredential` implementations that can be used to construct Azure SDK clients to support AAD token authentication.
184+
This sample can set and get secrets from Azure Key Vault. The [Azure Key Vault Secret client library for Java](/java/api/overview/azure/security-keyvault-secrets-readme) provides Azure Active Directory token authentication support across the Azure SDK. It provides a set of `TokenCredential` implementations that can be used to construct Azure SDK clients to support Azure AD token authentication.
185185
186186
The Azure Key Vault Secret client library allows you to securely store and control the access to tokens, passwords, API keys, and other secrets. The library offers operations to create, retrieve, update, delete, purge, back up, restore, and list the secrets and its versions.
187187
@@ -209,7 +209,7 @@ The Azure Key Vault Secret client library allows you to securely store and contr
209209
210210
Get the example from [MainController.java](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/blob/master/managed-identity-keyvault/src/main/java/com/microsoft/azure/MainController.java#L28) of the cloned sample project.
211211
212-
Also include `azure-identity` and `azure-security-keyvault-secrets` as dependency in your pom.xml. Get the example from [pom.xml](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/blob/master/managed-identity-keyvault/pom.xml#L21) of the cloned sample project.
212+
Also include `azure-identity` and `azure-security-keyvault-secrets` as dependencies in your *pom.xml* file. Get the example from [pom.xml](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/blob/master/managed-identity-keyvault/pom.xml#L21) of the cloned sample project.
213213
214214
4. Package your sample app.
215215
@@ -231,7 +231,7 @@ The Azure Key Vault Secret client library allows you to securely store and contr
231231
curl https://myspringcloud-springapp.azuremicroservices.io/secrets/connectionString
232232
```
233233
234-
You will see the message `Successfully got the value of secret connectionString from Key Vault https://<your-keyvault-name>.vault.azure.net/: jdbc:sqlserver://SERVER.database.windows.net:1433;database=DATABASE;`.
234+
you'll see the message `Successfully got the value of secret connectionString from Key Vault https://<your-keyvault-name>.vault.azure.net/: jdbc:sqlserver://SERVER.database.windows.net:1433;database=DATABASE;`.
235235
236236
Now create a secret and then retrieve it using the Java SDK.
237237
@@ -241,11 +241,11 @@ The Azure Key Vault Secret client library allows you to securely store and contr
241241
curl https://myspringcloud-springapp.azuremicroservices.io/secrets/test
242242
```
243243
244-
You will see the message `Successfully got the value of secret test from Key Vault https://<your-keyvault-name>.vault.azure.net: success`.
244+
you'll see the message `Successfully got the value of secret test from Key Vault https://<your-keyvault-name>.vault.azure.net: success`.
245245
246246
## Next steps
247247
248248
* [How to access Storage blob with managed identity in Azure Spring Cloud](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/tree/master/managed-identity-storage-blob)
249249
* [How to enable system-assigned managed identity for applications in Azure Spring Cloud](./how-to-enable-system-assigned-managed-identity.md)
250-
* [Learn more about managed identities for Azure resources](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/active-directory/managed-identities-azure-resources/overview.md)
250+
* [Learn more about managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md)
251251
* [Authenticate Azure Spring Cloud with Key Vault in GitHub Actions](./github-actions-key-vault.md)

0 commit comments

Comments
 (0)