Azure-Samples / modern-data-warehouse-dataops

DataOps for Microsoft Data Platform technologies. https://aka.ms/dataops-repo
MIT License
588 stars 459 forks source link

Key vault soft delete handle #596

Open 04diiguyi opened 1 year ago

04diiguyi commented 1 year ago

In the sample code to deploy infrastructure, key vault uses the default setting which enables soft delete. As a result, once we delete key vault and recreate it, we will encounter an issue since key vault is still there (soft delete mode). We could either disable soft delete for key vault, or check if the key vault is in soft delete mode, if so, restore it, otherwise create it.

DoD