Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Find the values needed for an image in JSON template
June 3, 2017
Q. What values do I need to input in my JSON template to specify an Azure image to use?
A. To specify an Azure image there are four attributes required:
Publisher
Offer
SKU
Version
These can be viewed using PowerShell as documented at "Q. How can I check on available Azure images using the RM PowerShell cmdlets?". Populate the same values found in the JSON, e.g.
"windowsImagePublisher": { "type": "string","defaultValue": "MicrosoftSQLServer"},"windowsImageOffer": {"type": "string","defaultValue": "SQL2014SP1-WS2012R2"},"windowsImageSKU": {"type": "string","defaultValue": "Enterprise"},"windowsImageVersion": {"type": "string","defaultValue": "latest"}
You May Also Like