You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Tutorial: Use a managed identity to connect Key Vault to an Azure Spring Apps app
12
+
# Tutorial: Connect Azure Spring Apps to Key Vault using managed identities
13
13
14
14
> [!NOTE]
15
15
> Azure Spring Apps is the new name for the Azure Spring Cloud service. Although the service has a new name, you'll see the old name in some places for a while as we work to update assets such as screenshots, videos, and diagrams.
This article shows you how to create a managed identity for an Azure Spring Apps app and use it to access Azure Key Vault.
21
+
This article shows you how to create a managed identity for an app deployed to Azure Spring Apps and use it to access Azure Key Vault.
22
22
23
23
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.
24
24
@@ -158,7 +158,7 @@ This app has access to get secrets from Azure Key Vault. Use the Azure Key Vault
158
158
vim src/main/resources/application.properties
159
159
```
160
160
161
-
1. To use managed identity for Azure Spring Apps apps, add properties with the following content to the *src/main/resources/application.properties* file.
161
+
1. To use managed identity for an app deployed to Azure Spring Apps, add properties with the following content to the *src/main/resources/application.properties* file.
You're shown 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;`.
248
+
You're shown the message `jdbc:sqlserver://SERVER.database.windows.net:1433;database=DATABASE;`.
0 commit comments