Azure Instance Metadata Service – Windows is case-insensitive and Linux case-sensitive

Written by James McDonald

September 7, 2019

When calling to a Resource manager API from Windows and Linux there are some differences to the URL. Just got caught with this because of a copy and paste from one to another.

Windows with lower case “resourcegroups” works

(Invoke-WebRequest -Uri https://management.azure.com/subscriptions/<SUBSCRIPTION ID>/resourcegroups/Toggen-VM?api-version=2016-06-01 -Method GET -ContentType "application/json" -Headers @{ Authorization ="Bearer $ArmToken"}).content

Linux with camelcased “resourceGroups”

curl https://management.azure.com/subscriptions/<SUBSCRIPTION ID>/resourceGroups/Toggen-VM?api-version=2016-09-01 -H "Authorization: Bearer ${ACCESS_TOKEN}"

Incidentally to get a token

There doesn’t seem to be a simple power shell command to get a token… You can make a more complex rest call but the following is the easiest. IMHO

az account get-access-token

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...

Ubuntu on Hyper-v

It boils town to installing linux-azure # as root or sudo apt-get update apt-get install linux-azure...