purple-gpu-57192
08/12/2024, 10:06 AMazure.mssql.Database I can see the enclave_type option. So does anybody know how to set this option in Azure native?adventurous-butcher-54166
08/12/2024, 3:04 PM2021-11-01 and the enclave option was announced generally available in November '23. Strangely, It's still the latest non-preview version of the API.
You can find the preferred_enclave_type paramter on sql.Database if you explicitly import the newer v20230801preview version. It accepts sql.AlwaysEncryptedEnclaveType as an input type with .DEFAULT or .VBS as value options.
For example, in Python this is how you could import the provider for a particular Azure API version:
from pulumi_azure_native.sql import v20230801preview as sqlpurple-gpu-57192
08/12/2024, 3:06 PMpurple-gpu-57192
08/15/2024, 10:56 AMadventurous-butcher-54166
08/15/2024, 11:45 AM