Skip to content

Commit

Permalink
support tls1.3 (Azure#25153)
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanz7 authored Jun 13, 2024
1 parent 666ec88 commit 85e3140
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Storage/Storage.Management/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
- Additional information about change #1
-->
## Upcoming Release
* Supported TLS1_3 when creating and updating a storage account
- `New-AzStorageAccount`
- `Set-AzStorageAccount`
* Fixed sync copy blob issue with -AsJob is specified [#25105]
- `Copy-AzStorageBlob`
* Updated Storage.Management.Sdk to support API version 2023-05-01
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ public bool AllowBlobPublicAccess
[ValidateSet(StorageModels.MinimumTlsVersion.TLS10,
StorageModels.MinimumTlsVersion.TLS11,
StorageModels.MinimumTlsVersion.TLS12,
StorageModels.MinimumTlsVersion.TLS13,
IgnoreCase = true)]
public string MinimumTlsVersion
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ public bool AllowBlobPublicAccess
[ValidateSet(StorageModels.MinimumTlsVersion.TLS10,
StorageModels.MinimumTlsVersion.TLS11,
StorageModels.MinimumTlsVersion.TLS12,
StorageModels.MinimumTlsVersion.TLS13,
IgnoreCase = true)]
public string MinimumTlsVersion
{
Expand Down

0 comments on commit 85e3140

Please sign in to comment.