Forum Discussion
isotonic_uk
Sep 28, 2023Brass Contributor
Source image is not created for trusted boot but it is turned on the VM.
Hi New to Bicep and learning it by deploying a mini environment in my lab. I am using the same code base as defined here: https://rozemuller.com/avd-automation-cocktail-avd-with-bicep-and-azure-...
- Oct 11, 2023
Thought I would add, managed to resolve in the end. I needed to add features into the deploy-shared-image-gallery.bicep file
features: [
{
name: 'SecurityType'
value: 'TrustedLaunch'
}
]at the point when it creates the resource galleryDefinition after it declares the hyperVGeneration. What I found is its not well documented at the moment.
isotonic_uk
Oct 11, 2023Brass Contributor
Thought I would add, managed to resolve in the end. I needed to add features into the deploy-shared-image-gallery.bicep file
features: [
{
name: 'SecurityType'
value: 'TrustedLaunch'
}
]
at the point when it creates the resource galleryDefinition after it declares the hyperVGeneration. What I found is its not well documented at the moment.