Mass-pricing of VMs
on Azure
based on CPU
cores count and memory. This is useful when costing a lift-and-shift migration dealing with many thousands VMS
of varied sizes.
The pricing is retrieved from Virtual Machines Pricing.
🚨 This tool will only provide you with an estimation. Depending on your Azure
spend you might be able to get a better deal from Microsoft
. You should use the output of this tool as a coarse-grain estimation. On top of the VM
price you will also need to consider storage and egress costs.
This tool is composed of two components:
- A Parser retrieving the pricing from Virtual Machines Pricing
- A Coster using the output from the
Parser
and a list ofVM
specifications to determine their price
This approach allows to decouple pricing acquisition from its usage and open the door to automation. The Parser
can be scheduled to retrieve the pricing at regular interval and the Coster
can then use an always up-to-date pricing.
Retrieve VMs
hourly pricing for a specific combination of culture, currency, operating system and region.
Culture | Culture display name | Currency | Currency display name | Support |
---|---|---|---|---|
en-us |
English (US) |
usd |
US Dollar ($) |
✅ |
cs-cz |
Čeština |
eur [1] |
Euro (€) |
✅ |
da-dk |
Dansk |
dkk |
Danish Krone (kr) |
✅ |
de-de |
Deutsch |
eur |
Euro (€) |
✅ |
chf [9] |
Swiss Franc. (chf) |
✅ | ||
en-au |
English (Australia) |
aud |
Australian Dollar ($) |
✅ |
en-ca |
English (Canada) |
cad |
Canadian Dollar ($) |
✅ |
en-in |
English (India) |
inr |
Indian Rupee (₹) |
✅ |
en-gb |
English (UK) |
gpb |
British Pound (£) |
✅ |
nzd [7] |
New Zealand Dollar ($) |
✅ | ||
es-es |
Español |
eur |
Euro (€) |
✅ |
es-mx |
Español (MX) |
usd [3] |
US Dollar ($) |
✅ |
fr-fr |
Français |
eur |
Euro (€) |
✅ |
chf [9] |
Swiss Franc. (chf) |
✅ | ||
fr-ca |
Français (Canada) |
cad |
Canadian Dollar ($) |
✅ |
it-it |
Italiano |
eur |
Euro (€) |
✅ |
chf [9] |
Swiss Franc. (chf) |
✅ | ||
hu-hu |
Magyar |
eur [1] |
Euro (€) |
✅ |
nb-no |
Norsk |
nk |
Norwegian Krone (kr) |
✅ |
nl-nl |
Nederlands |
eur |
Euro (€) |
✅ |
pl-pl |
Polski |
eur [1] |
Euro (€) |
✅ |
pt-br |
Português (Brasil) |
brl |
Brazilian Real (R$) |
✅ |
pt-pt |
Português |
eur |
Euro (€) |
✅ |
sv-se |
Svenska |
sek |
Swedish Krona (kr) |
✅ |
tr-tr |
Türkçe |
usd [3] |
US Dollar ($) |
✅ |
ru-ru |
Pусский |
rub |
Russian Ruble (руб) |
✅ |
ja-jp |
日本語 |
jpy |
Japanese Yen (¥) |
✅ |
ko-kr |
한국어 |
krw |
Korean Won (₩) |
✅ |
zh-cn |
中文(简体) |
N/A |
N/A |
N/A |
zh-tw |
中文(繁體) |
twd |
Taiwanese Dollar (NT$) |
✅ |
🚨 the parser is not - yet - able to retrieve pricing for the regions east-china2
, north-china2
, east-china
and north-china
as it is available on a different website.
🚨 the parser is not able to retrieve pricing for the regions us-dod-central
and us-dod-east
as no virtual machines are listed as publicly available.
> cd .\parser\
> yarn
> cd .\parser\
> yarn crawl --culture en-us --currency usd --operating-system linux --region us-west
You can also use short names:
> yarn crawl -l en-us -c usd -o linux -r us-west
Arguments:
culture
any of theoption
value
in the Change languageselect
- This will impact the formatting of the pricing
currency
any of theoption
value
in the Currencyselect
operating-system
any of theoption
value
in the OS/Softwareselect
region
any of theoption
value
in the Regionselect
In the footer:
Writes 2
output files in the out\
directory. One is a CSV
, the other one is JSON
. Both files contain the same data.
.\out\vm-pricing_<region>_<operating-system>.csv
.\out\vm-pricing_<region>_<operating-system>.json
Fields:
- Instance
- vCPU
- RAM
- Pay as You Go
- Pay as You Go With Azure Hybrid Benefit
- One Year Reserved
- One Year Reserved With Azure Hybrid Benefit
- Three Year Reserved
- Three Year Reserved With Azure Hybrid Benefit
- Spot
- Spot With Azure Hybrid Benefit
- One Year Savings plan
- One Year Savings plan With Azure Hybrid Benefit
- _Three Year Savings plan
- Three Year Savings plan With Azure Hybrid Benefit
The parser has unit tests focusing on edge cases of price formatting:
> cd .\parser\
> yarn test
The end-to-end tests attempt to compare known prices for the D2 v3
instance in us-west
using permutations of supported culture
, operating-system
, and currency
:
> cd .\parser\
> yarn e2e-all
Price VMs
using the JSON
pricing files generated by the Parser
. The Coster
will select the cheapest VM
that has enough CPU
cores and RAM
.
You should paste the JSON
pricing files generated by the Parser
in the coster\src\AzureVmCoster\Pricing\
folder. Setting the culture
is only relevant when dealing with pricing and input files that were written using another culture with a different decimal point (e.g. comma vs period).
In Release
mode:
> cd .\coster\src\AzureVmCoster
> dotnet run --configuration Release -- --input <input-path> --culture <culture>
> dotnet run --configuration Release -- -i <input-path> -l <culture>
> dotnet run --configuration Release -- -i <input-path>
The culture
is optional.
In Debug
mode
> cd .\coster\src\AzureVmCoster
> dotnet run --configuration Debug
Input file path: <input-path>
Culture (leave blank for system default):
You'll need to provide the <input-path>
when prompted, the culture
is optional.
<input-path>
should point to a CSV
file with the following fields:
- Region
- Name
- CPU (a
short
) - RAM (in
GB
, adecimal
) - Operating System
The columns can be in any order and the CSV
file can contain extra-columns. The Region
and Operating System
fields must match existing regions and supported operating systems in the Virtual Machines Pricing website.
The Coster
will generate a CSV
file in the Out\
directory with the following fields:
- Region
- Name
- Operating System
- Instance
- CPU
- RAM
- Pay as You Go
- Pay as You Go With Azure Hybrid Benefit
- One Year Reserved
- One Year Reserved With Azure Hybrid Benefit
- Three Year Reserved
- Three Year Reserved With Azure Hybrid Benefit
- Spot
- Spot With Azure Hybrid Benefit
- One Year Savings plan
- One Year Savings plan With Azure Hybrid Benefit
- Three Year Savings plan
- Three Year Savings plan With Azure Hybrid Benefit
01. Euro is used for countries which don't have their currency listed, are part of the European Union but not part of the Eurozone.
03. USD is used when no other currency could be matched to the country.
07. English (UK) has been selected due to the use of New Zealand English in New Zealand.
09. German, French and Italian are three of the official languages of Switzerland.