From 8627a558eca15237c0e42fcf9c01f4b504c6fa28 Mon Sep 17 00:00:00 2001 From: "Brian Moore (AZURE RESOURCE MANAGER)" Date: Sun, 11 Aug 2019 16:55:57 -0500 Subject: [PATCH] updated GEN script to include enableSoftDelete --- test/ci-gen-setup/Create-GEN-Artifacts.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/ci-gen-setup/Create-GEN-Artifacts.ps1 b/test/ci-gen-setup/Create-GEN-Artifacts.ps1 index 1394509ce852..f694f20c60a0 100644 --- a/test/ci-gen-setup/Create-GEN-Artifacts.ps1 +++ b/test/ci-gen-setup/Create-GEN-Artifacts.ps1 @@ -50,7 +50,10 @@ if($vault -eq $null) { $vault = New-AzureRMKeyVault -VaultName $KeyVaultName ` -ResourceGroupName $ResourceGroupName ` -Location $Location ` - -EnabledForTemplateDeployment -EnabledForDiskEncryption -EnabledForDeployment ` + -EnabledForTemplateDeployment ` + -EnabledForDiskEncryption ` + -EnabledForDeployment ` + -EnableSoftDelete -Verbose }