Skip to content

Commit 4d1883b

Browse files
authored
[Storage] az storage account create/update: Update description for tls 1.3 being not yet available, remove breaking change warning to deprecate tls1.0, tls1.1 (#33243)
1 parent e91477c commit 4d1883b

2 files changed

Lines changed: 2 additions & 14 deletions

File tree

src/azure-cli/azure/cli/command_modules/storage/_breaking_change.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,3 @@
22
# Copyright (c) Microsoft Corporation. All rights reserved.
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
5-
6-
from azure.cli.core.breaking_change import register_other_breaking_change
7-
8-
# --min-tls-version removing version 1.0 1.1
9-
register_other_breaking_change('storage account create',
10-
message='The --min-tls-version argument values TLS1_0 and TLS1_1 have been retired on'
11-
' 2026/02/03 and will be removed on 2026/03/03.')
12-
register_other_breaking_change('storage account update',
13-
message='The --min-tls-version argument values TLS1_0 and TLS1_1 have been retired on'
14-
' 2026/02/03 and will be removed on 2026/03/03.')

src/azure-cli/azure/cli/command_modules/storage/_params.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
390390
'public access setting for a container is required to enable anonymous access.')
391391
c.argument('min_tls_version', arg_type=get_enum_type(t_tls_version),
392392
help='The minimum TLS version to be permitted on requests to storage. '
393-
' Values TLS1_0 and TLS1_1 have been retired on 2026/02/03 and will be removed on 2026/03/03.'
394-
' Microsoft recommends setting MinimumTlsVersion to TLS1_2')
393+
'TLS1_3 is not yet supported. Microsoft recommends setting MinimumTlsVersion to TLS1_2.')
395394
c.argument('allow_shared_key_access', allow_shared_key_access_type)
396395
c.argument('edge_zone', edge_zone_type)
397396
c.argument('identity_type', arg_type=get_enum_type(t_identity_type), arg_group='Identity',
@@ -509,8 +508,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
509508
'public access setting for a container is required to enable anonymous access.')
510509
c.argument('min_tls_version', arg_type=get_enum_type(t_tls_version),
511510
help='The minimum TLS version to be permitted on requests to storage. '
512-
' Values TLS1_0 and TLS1_1 have been retired on 2026/02/03 and will be removed on 2026/03/03.'
513-
' Microsoft recommends setting MinimumTlsVersion to TLS1_2')
511+
'TLS1_3 is not yet supported. Microsoft recommends setting MinimumTlsVersion to TLS1_2.')
514512
c.argument('allow_shared_key_access', allow_shared_key_access_type)
515513
c.argument('identity_type', arg_type=get_enum_type(t_identity_type), arg_group='Identity',
516514
help='The identity type.')

0 commit comments

Comments
 (0)