File tree Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 13
13
<ItemGroup >
14
14
<PackageReference Include =" Microsoft.Azure.KeyVault" Version =" 3.0.1" />
15
15
<PackageReference Include =" Microsoft.Azure.KeyVault.WebKey" Version =" 3.0.1" />
16
- <PackageReference Include =" Microsoft.Azure.Management.KeyVault" Version =" 3.1.0-preview.2 " />
16
+ <PackageReference Include =" Microsoft.Azure.Management.KeyVault" Version =" 3.1.0" />
17
17
<PackageReference Include =" Microsoft.Azure.Management.Network" Version =" 21.0.0" />
18
18
</ItemGroup >
19
19
Original file line number Diff line number Diff line change 18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
+ * Added default access policies for Key Vault key as "All but purge"
21
22
* Absorbed KeyOps from parameter when importing key from certificate on managed HSM [ #16773 ]
22
23
* Fixed a bug when updating key operations on managed HSM [ #16774 ]
23
24
* Fixed the issue when importing no-password certificate [ #16742 ]
Original file line number Diff line number Diff line change 17
17
<PackageReference Include =" Portable.BouncyCastle" Version =" 1.8.8" />
18
18
<PackageReference Include =" Microsoft.Azure.KeyVault" Version =" 3.0.1" />
19
19
<PackageReference Include =" Microsoft.Azure.KeyVault.WebKey" Version =" 3.0.1" />
20
- <PackageReference Include =" Microsoft.Azure.Management.KeyVault" Version =" 3.1.0-preview.2 " />
20
+ <PackageReference Include =" Microsoft.Azure.Management.KeyVault" Version =" 3.1.0" />
21
21
<PackageReference Include =" System.Security.Cryptography.Cng" Version =" 4.5.0" />
22
22
</ItemGroup >
23
23
Original file line number Diff line number Diff line change @@ -357,17 +357,10 @@ protected bool IsValidObjectIdSyntax(string objectId)
357
357
return DefaultProfile . DefaultContext . Environment . OnPremise || IsValidGUid ( objectId ) ;
358
358
}
359
359
360
+ // All but purge
360
361
protected readonly string [ ] DefaultPermissionsToKeys =
361
362
{
362
- KeyPerms . Get ,
363
- KeyPerms . Create ,
364
- KeyPerms . Delete ,
365
- KeyPerms . List ,
366
- KeyPerms . Update ,
367
- KeyPerms . Import ,
368
- KeyPerms . Backup ,
369
- KeyPerms . Restore ,
370
- KeyPerms . Recover
363
+ KeyPerms . All
371
364
} ;
372
365
373
366
protected readonly string [ ] DefaultPermissionsToSecrets =
You can’t perform that action at this time.
0 commit comments