Skip to content

Commit

Permalink
Merge pull request #556 from Azure/issue-544
Browse files Browse the repository at this point in the history
Adding 23H2 OS image option and fixing baseline portal UI bug
  • Loading branch information
danycontre authored Dec 8, 2023
2 parents f7e7bfb + 24d48b7 commit f6e1ecb
Show file tree
Hide file tree
Showing 10 changed files with 255 additions and 430 deletions.
59 changes: 50 additions & 9 deletions workload/arm/deploy-baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.23.1.45101",
"templateHash": "3174776039135743066"
"templateHash": "11922419804250053477"
},
"name": "AVD Accelerator - Baseline Deployment",
"description": "AVD Accelerator - Deployment Baseline"
Expand Down Expand Up @@ -520,10 +520,12 @@
"win11_21h2",
"win11_21h2_office",
"win11_22h2",
"win11_22h2_office"
"win11_22h2_office",
"win11_23h2",
"win11_23h2_office"
],
"metadata": {
"description": "AVD OS image SKU. (Default: win11-21h2)"
"description": "AVD OS image SKU. (Default: win11-22h2)"
}
},
"managementVmOsImage": {
Expand Down Expand Up @@ -916,6 +918,13 @@
"metadata": {
"description": "Enable usage and telemetry feedback to Microsoft."
}
},
"enableKvPurgeProtection": {
"type": "bool",
"defaultValue": true,
"metadata": {
"description": "Enable purge protection for the keyvaults. (Default: true)"
}
}
},
"variables": {
Expand Down Expand Up @@ -1245,6 +1254,18 @@
"sku": "win11-22h2-avd-m365",
"version": "latest"
},
"win11_23h2": {
"publisher": "MicrosoftWindowsDesktop",
"offer": "Windows-11",
"sku": "win11-23h2-avd",
"version": "latest"
},
"win11_23h2_office": {
"publisher": "MicrosoftWindowsDesktop",
"offer": "office-365",
"sku": "win11-23h2-avd-m365",
"version": "latest"
},
"winServer_2022_Datacenter": {
"publisher": "MicrosoftWindowsServer",
"offer": "WindowsServer",
Expand Down Expand Up @@ -19074,6 +19095,9 @@
},
"keyVaultprivateDNSResourceId": "[if(parameters('createPrivateDnsZones'), createObject('value', reference(subscriptionResourceId('Microsoft.Resources/deployments', format('Networking-{0}', parameters('time'))), '2022-09-01').outputs.KeyVaultDnsZoneResourceId.value), createObject('value', parameters('avdVnetPrivateDnsZoneKeyvaultId')))]",
"tags": "[if(parameters('createResourceTags'), createObject('value', union(variables('varCustomResourceTags'), variables('varAvdDefaultTags'))), createObject('value', variables('varAvdDefaultTags')))]",
"enableKvPurgeProtection": {
"value": "[parameters('enableKvPurgeProtection')]"
},
"kvTags": {
"value": "[variables('varZtKeyvaultTag')]"
}
Expand All @@ -19085,7 +19109,7 @@
"_generator": {
"name": "bicep",
"version": "0.23.1.45101",
"templateHash": "10865746163538598377"
"templateHash": "1028804516785462919"
}
},
"parameters": {
Expand Down Expand Up @@ -19191,6 +19215,13 @@
"metadata": {
"description": "Do not modify, used to set unique value for resource deployment."
}
},
"enableKvPurgeProtection": {
"type": "bool",
"defaultValue": true,
"metadata": {
"description": "Enable purge protection on the key vault"
}
}
},
"variables": {
Expand Down Expand Up @@ -22225,6 +22256,9 @@
"ztManagedIdentityResourceId": "[if(parameters('diskZeroTrust'), createObject('value', reference(extensionResourceId(format('/subscriptions/{0}/resourceGroups/{1}', format('{0}', parameters('subscriptionId')), format('{0}', parameters('serviceObjectsRgName'))), 'Microsoft.Resources/deployments', format('ZT-Managed-ID-{0}', parameters('time'))), '2022-09-01').outputs.resourceId.value), createObject('value', ''))]",
"tags": {
"value": "[union(parameters('tags'), parameters('kvTags'))]"
},
"enableKvPurgeProtection": {
"value": "[parameters('enableKvPurgeProtection')]"
}
},
"template": {
Expand All @@ -22234,7 +22268,7 @@
"_generator": {
"name": "bicep",
"version": "0.23.1.45101",
"templateHash": "9816348956723829998"
"templateHash": "6760011451338634679"
}
},
"parameters": {
Expand Down Expand Up @@ -22322,6 +22356,13 @@
"metadata": {
"description": "Do not modify, used to set unique value for resource deployment."
}
},
"enableKvPurgeProtection": {
"type": "bool",
"defaultValue": true,
"metadata": {
"description": "Enable purge protection on the key vault"
}
}
},
"resources": [
Expand All @@ -22347,7 +22388,7 @@
"value": true
},
"enablePurgeProtection": {
"value": true
"value": "[parameters('enableKvPurgeProtection')]"
},
"softDeleteRetentionInDays": {
"value": 7
Expand Down Expand Up @@ -25494,7 +25535,7 @@
"value": false
},
"enablePurgeProtection": {
"value": true
"value": "[parameters('enableKvPurgeProtection')]"
},
"softDeleteRetentionInDays": {
"value": 7
Expand Down Expand Up @@ -41050,7 +41091,7 @@
"_generator": {
"name": "bicep",
"version": "0.23.1.45101",
"templateHash": "8903884659391222527"
"templateHash": "3170827786162599560"
}
},
"parameters": {
Expand Down Expand Up @@ -41147,7 +41188,7 @@
"createIntuneEnrollment": {
"type": "bool",
"metadata": {
"description": "Eronll session hosts on Intune."
"description": "Enroll session hosts on Intune."
}
},
"encryptionAtHost": {
Expand Down
Loading

0 comments on commit f6e1ecb

Please sign in to comment.