Hi,
I am reading the https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/key-vault-windows and try to deploy it on Azure VM, but I am not sure if I still need to create an Extension Schema when using Powershell to deploy the AKV Extension on Azure VM.
The deployment code below seems not reading any template. So wondering if there is still steps need to follow for the Extension Schema.
Build settings
$settings = '{"secretsManagementSettings":
{ "pollingIntervalInS": "' + <pollingInterval> +
'", "certificateStoreName": "' + <certStoreName> +
'", "certificateStoreLocation": "' + <certStoreLoc> +
'", "observedCertificates": ["' + <observedCert1> + '","' + <observedCert2> + '"] } }'
$extName = "KeyVaultForWindows"
$extPublisher = "Microsoft.Azure.KeyVault"
$extType = "KeyVaultForWindows"
# Start the deployment
Set-AzVmExtension -TypeHandlerVersion "1.0" -ResourceGroupName <ResourceGroupName> -Location <Location> -VMName <VMName> -Name $extName -Publisher $extPublisher -Type $extType -SettingString $settings
Thanks!

