This API wraps the Azure RateCard API and helps map Azure sku id's to the latest rate cards. It can be used to build cost estimation products built around spreadsheets and/or ARM template editors
Valid Offer's supported by this API are listed at https://azure.microsoft.com/en-us/support/legal/offer-details/. Prefix the codes with MS-AZR-
before passing them to the API
- Edit /config/default.json to add storage account info & client app id/secret. Client app needs to have contributor access to a subscription
- npm install
- npm start
- npm run test
- Run
generatetestdata.sh
to create local json files used during integration tests npm run integration_tests
See the /tests/Functions.spec.ts for examples on how to use the api. This integration test will hit the API after it is deployed to Azure functions
-
/api/costmodel - takes a json document and returns details on the costs for each sku in the document
Sample Input:
Optional Parameter: offercode=MS-AZR-0121p
Offer will default to MS-AZR-0003p if none is provided
-
/api/cost/{location}/ - returns rate card values for all skus in a particular region
Optional Parameter: offercode=MS-AZR-0121p
Offer will default to MS-AZR-0003p if none is provided
-
/api/cost/{location}/{sku name} - returns single rate card applied to sku in specific region
Optional Parameter: offercode=MS-AZR-0121p
Offer will default to MS-AZR-0003p if none is provided