Azure Image Builder - Specify storage account type for each replication region
The imageTemplate schema for specifying replication regions doesn't seem to allow me to specify different storage account types for replication regions. I'd like to use ZRS where possible, but not all regions, such as West US, support ZRS. In those scenarios, we should be allowed to define the Standard or Premium LRS.
The SIG image version schema already supports this. The AIB image definition schema should match.
"targetRegions":[
{
"name":"West US 2",
"regionalReplicaCount":1,
"storageAccountType":"Standard_ZRS"
},
{
"name":"East US 2",
"regionalReplicaCount":1,
"storageAccountType":"Standard_ZRS"
},
{
"name":"East US",
"regionalReplicaCount":1,
"storageAccountType":"Standard_ZRS"
},
{
"name":"South Central US",
"regionalReplicaCount":1,
"storageAccountType":"Standard_LRS"
}
]
