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
Copy file name to clipboardExpand all lines: articles/key-vault/general/tutorial-python-windows-virtual-machine.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,14 @@
2
2
title: Tutorial - Use Azure Key Vault with a Windows virtual machine in Python | Microsoft Docs
3
3
description: In this tutorial, you configure an ASP.NET core application to read a secret from your key vault.
4
4
services: key-vault
5
-
author: msmbaldwin
6
-
manager: rajvijan
5
+
author: ShaneBala-keyvault
6
+
manager: ravijan
7
7
8
8
ms.service: key-vault
9
9
ms.subservice: general
10
10
ms.topic: tutorial
11
-
ms.date: 09/05/2018
12
-
ms.author: mbaldwin
11
+
ms.date: 05/11/2020
12
+
ms.author: sudbalas
13
13
ms.custom: mvc
14
14
#Customer intent: As a developer I want to use Azure Key vault to store secrets for my app, so that they are kept secure.
15
15
---
@@ -149,7 +149,10 @@ The code presents a two-step process:
149
149
# importing the requests library
150
150
import requests
151
151
152
-
# Step 1: Fetch an access token from a Managed Identity enabled azure resource.
152
+
# Step 1: Fetch an access token from a Managed Identity enabled azure resource.
153
+
# Resources with an MSI configured recieve an AAD access token by using the Azure Instance Metadata Service (IMDS)
154
+
# IMDS provides an endpoint accessible to all IaaS VMs using a non-routable well-known IP Address
155
+
# To learn more about IMDS and MSI Authentication see the following link: https://docs.microsoft.com/azure/virtual-machines/windows/instance-metadata-service
153
156
# Note that the resource here is https://vault.azure.net for public cloud and api-version is 2018-02-01
0 commit comments