Values required for image in JSON template

Find the values needed for an image in JSON template

John Savill

June 3, 2017

1 Min Read
Values required for image in JSON template

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"}

 

About the Author

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.

You May Also Like