Skip to content

Commit eff4510

Browse files
Update tutorial-python-windows-virtual-machine.md
1 parent a23ec04 commit eff4510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/key-vault/general/tutorial-python-windows-virtual-machine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ The code presents a two-step process:
152152
# Step 1: Fetch an access token from a Managed Identity enabled azure resource.
153153
# Resources with an MSI configured recieve an AAD access token by using the Azure Instance Metadata Service (IMDS)
154154
# 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)
155+
# To learn more about IMDS and MSI Authentication see the following link: https://docs.microsoft.com/azure/virtual-machines/windows/instance-metadata-service
156156
# Note that the resource here is https://vault.azure.net for public cloud and api-version is 2018-02-01
157157
MSI_ENDPOINT = "http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https%3A%2F%2Fvault.azure.net"
158158
r = requests.get(MSI_ENDPOINT, headers = {"Metadata" : "true"})

0 commit comments

Comments
 (0)