Each entry follows this format:
"publisher":"publisher",
"sku":[listOfSKUs],
"offer":"offer",
"display_name":"displayName"
- For
publisher
, specify the publisher.
- For
listOfSKUs
, specify a comma-separated list of SKU
values, in quotes.
- For
offer
, specify the offer
value.
- For
display_name
, specify a display name for the image in
the blueprint designer.
For example, the following code includes Ubuntu images, an openSUSE image, and CentOS
images:
"azure": {
"images": [
{
"publisher": "Canonical",
"sku": ["12.10","14.04.3-LTS","15.10"],
"offer": "UbuntuServer",
"display_name": "UbuntuServer"
},
{
"publisher": "SUSE",
"sku": ["13.2"],
"offer": "openSUSE",
"display_name": "openSUSE"
},
{
"publisher": "openlogic",
"sku": ["6.5","6.6","7.0","7.1"],
"offer": "CentOS",
"display_name" : "CentOS"
}
]
}