Skip to content

Commit

Permalink
feat(e2e) - Enabling soft delete when creating keyvaults (#1820)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinagesh authored Mar 10, 2021
1 parent 2e71c39 commit d374837
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion e2e/test/prerequisites/E2ETestsSetup/test-resources.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ resource keyVault 'Microsoft.KeyVault/vaults@2018-02-14' = {
name: 'standard'
family: 'A'
}
enableSoftDelete: false
enableSoftDelete: true
networkAcls: {
defaultAction: 'Allow'
bypass: 'AzureServices'
Expand Down
6 changes: 3 additions & 3 deletions e2e/test/prerequisites/E2ETestsSetup/test-resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
"name": "standard",
"family": "A"
},
"enableSoftDelete": false,
"enableSoftDelete": true,
"networkAcls": {
"defaultAction": "Allow",
"bypass": "AzureServices",
Expand Down Expand Up @@ -342,7 +342,7 @@
"properties": {}
},
{
"type": "Microsoft.Security/IoTSecuritySolutions",
"type": "Microsoft.Security/iotSecuritySolutions",
"apiVersion": "2019-08-01",
"name": "[parameters('SecuritySolutionName')]",
"location": "[resourceGroup().location]",
Expand Down Expand Up @@ -484,7 +484,7 @@
},
"workspaceId": {
"type": "string",
"value": "[format('{0}', reference(resourceId('Microsoft.OperationalInsights/workspaces', parameters('OperationalInsightsName')), '2017-03-15-preview').customerId)]"
"value": "[reference(resourceId('Microsoft.OperationalInsights/workspaces', parameters('OperationalInsightsName')), '2017-03-15-preview').customerId]"
},
"customAllocationPolicyWebhook": {
"type": "string",
Expand Down

0 comments on commit d374837

Please sign in to comment.