The checkZonePeers API: Is your availability zone "1" equal to my "1"?
Last updated
Last updated
This is a local copy of my article on the FTA blog...
Since March 2018, Azure Availability Zones (AZs) are generally available. "Availability Zones are physically separate locations within an Azure region. Each Availability Zone consists of one or more datacenters equipped with independent power, cooling, and networking."
Take for example the Azure Region 'West Europe', which is in the 'Geography Europe', and is the Microsoft'ish region name for Amsterdam (in the Netherlands (in Europe (on Earth))). West Europe is equipped with 3 availability zones. Roughly speaking, these availability zones are 1 milli-second network latency away from each other, or something like 30-40 km (if you have to walk), so if a local disaster renders resources in one AZ unavailable, you hopefully have some resiliency baked into your solution architecture, with failover resources in the second and third AZ. When you spin up resources in Azure, some of these are so-called "zonal services":
A zonal service or resource "supports AZs, and can be deployed to a specific, self-selected availability zone, to achieve more stringent latency or performance requirements."
A zonal resource's ARM JSON representation contains a zones
array. For example, let's look at a (zonal) IP address:
Great, we know now that our IP address 'lives' in West Europe (Amsterdam), in availability zone "1" (whatever that might mean). This information allows us to place other resources in the same AZ. For example, the network interface card or load balancer that you attach that IP address to, certainly has to be in AZ 1 as well. When you place multiple resources into AZ 1, you know they'll be closer together as if one of them would be in a different AZ. The AZ number helps you plan out a deployment, by deliberately placing resources in the same, or in different AZs.
The availability zone numbers are meant to be used only within a single Azure region: AZ1 in West Europe (Amsterdam) has absolutely nothing to do with AZ1 in North Europe (Dublin in Ireland), except that they might be cooled by the same chilly North Sea air.
Assuming you have a single Azure subscription, that's enough you need to know, you can stop reading here. I appreciate your time and attention, check our official docs, and have a pleasant day.
If you're still with me, chances are that you or your company have multiple Azure subscriptions. You might even have multiple Azure AD tenants. Or you might work with subscriptions from customers or partners, who 'live' underneath the partner's Azure AD tenant. And this is where things get more complex:
The "availability zone 1 in West Europe" in subscription 'X' is NOT necessarily equivalent to "availability zone 1 in West Europe" in another subscription 'Y'!
When naming things like 1, 2, 3 and so forth, we humans have the tendency that start using the thingie called "1" first, and once we need a second thing, we use thingie "2", etc. If the Azure team would have made Availability Zone "1" (in a certain region) the same for all of us, then that AZ would quickly demonstrate that "cloud is just the illusion of infinite resources"; all customers would deploy their main workload into AZ1, and only gradually leverage AZ2, and maybe, just maybe, deploy something into AZ3. AZ1 would run hot quickly, while AZ2 would have modest load. And AZ3 would be wondering which business justification made it being built in the first place.
Therefore, the Azure team decided to 'shuffle' the mapping of the availability zone identifiers to 'real/physical' availability zone, on a per-subscription basis. Once a subscription is created, that mapping will remain unchanged for the lifetime of that subscription.
So now imagine you want to deploy a resource (like a database VM) in your own subscription, but you want it to be physically placed in the very same availability zone which my subscription calls "AZ 2". How can you find out which AZ number (in your own subscription) you have to pick, to deploy close to my workload? You can find out using the Azure checkZonePeers
API, which gives you a mapping table.
checkZonePeers
API work?The checkZonePeers
API lets you retrieve a mapping table, which tells you how other subscriptions call an AZ, which your subscription knows under a certain name.
Let's say 'our' reference subscription ID, relative to which we want to determine AZ names (in the westeurope
region) is 11111111-1111-1111-1111-111111111111
. We ask the API:
Hey, I am
11111111-1111-1111-1111-111111111111
, and I am interested how two other subscription IDs (22222222-2222-2222-2222-222222222222
and33333333-3333-3333-3333-333333333333
), call 'my' AZs inwesteurope
...
The underlying REST API call looks something like this:
In the URL, you have the subscription ID which is your 'north star', which defines the baseline of what AZ names are normative for you. In the request body, you specify the Azure region and the other subscriptions you want to have a mapping for.
The API's response looks like this:
Therefore, you have the following mapping:
AZ 1 in our main sub (11111111-...
) is AZ "1" as well in 22222222...
, but it's called AZ "3" in 33333333-...
.
Authorization
header?The aforementioned approach works - if all your subscriptions are governed by the very same Azure AD tenant; you fetch the access token, do the lookup for all your subscriptions, and be done.
However, if these subscriptions are hooked up to different AAD tenants, you need to demonstrate to the checkZonePeers
API that you are authorized to access all of them. Unfortunately, the API only accepts a single bearer token in the HTTP Authorization header. How can we supply the other tokens? For such tenant-boundary-spanning API calls, the Azure Resource Manager API has a custom HTTP header, called x-ms-authorization-auxiliary
, which can hold up to three 'auxiliary' tokens.
If the primary token (from the base subscription's AAD tenant) goes into Authorization: Bearer ...
, you can put three additional AAD tokens from other AAD tenants into the x-ms-authorization-auxiliary
.
Please note that all of these tokens need to belong to the same subject, or user. Your Azure AD user must have an account (or be a guest) in all relevant AAD tenants, and of course you need to be a Reader on the underlying subscriptions.
Otherwise, you will get an AuxiliaryTokensInvalidUserIdentity
error, indicating that Authentication failed for auxiliary token: The '1' auxiliary tokens are from the client(s) 'live.com#foobar@hotmail.com' which are different from the client of primary identity 'chgeuer@microsoft.com'.
Microsoft.Resources/AvailabilityZonePeering
feature for your subsYou might have to register usage of that API first. You can check that the feature is enabled, using this command:
If you don't get back "Registered"
, make sure you register for the feature in all relevant subscriptions.
bash
, curl
and jq
)Below, you can find a demo script, which you of course need to adapt to your environment, i.e. filling in the appropriate Azure AD tenant IDs and Azure subscription IDs.
In my environment, I have three Azure subscriptions and each of them is hooked up to a different Azure AD tenant.
In order to make it simple, I'm running this in a Linux shell, under WSL, on my Windows laptop. For each of the (in my case three) required access tokens, I'm doing a device login, so I can simply authenticate in my Windows web browser. If that script detects that it's running within WSL, then I copy the device login's user code into the Windows clipboard, and kick the (Windows-side) default web browser to the device login page, so I just need to Ctrl-V paste the device user code, and do my authentication dance.
In addition to the actual response from the REST API, I output some claim contents from the various access tokens, which looks something like this:
As you can see, the Subject (sub
) is the same in all of them (as mentioned earlier, this is needed)...
Subscription | AZ X | AZ Y | AZ Z |
---|---|---|---|
Azure Subscription ID | Azure Active Directory Tenant ID |
---|---|
11111111-1111-1111-1111-111111111111
1
2
3
22222222-2222-2222-2222-222222222222
1
3
2
33333333-3333-3333-3333-333333333333
3
2
1
11111111-1111-1111-1111-111111111111
aadaadaa-1111-1111-1111-111111111111
22222222-2222-2222-2222-222222222222
aadaadaa-2222-2222-2222-222222222222
33333333-3333-3333-3333-333333333333
aadaadaa-3333-3333-3333-333333333333