Skip to content

Commit 2a00d0e

Browse files
authored
set minimum TLS version to 1.2 (#8628)
1 parent 622d0ee commit 2a00d0e

File tree

4 files changed

+1411
-984
lines changed

4 files changed

+1411
-984
lines changed

src/image-copy/HISTORY.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
Release History
44
===============
55

6+
1.0.2
7+
++++++
8+
* Create temporary storage account with minimum TLS version set to `TLS1_2`
9+
610
1.0.1
711
++++++
8-
*Fix issue related to apiVersion update in azurecli for image-copy-extention
12+
* Fix issue related to apiVersion update in azurecli for image-copy-extention
913

1014
1.0.0
1115
++++++

src/image-copy/azext_imagecopy/create_target.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ def create_target_image(location, transient_resource_group_name, source_type, so
3636
'--name', target_storage_account_name,
3737
'--resource-group', transient_resource_group_name,
3838
'--location', location,
39-
'--sku', 'Standard_LRS'],
39+
'--sku', 'Standard_LRS',
40+
'--min-tls-version', 'TLS1_2'],
4041
subscription=target_subscription,
4142
only_show_errors=only_show_errors)
4243

0 commit comments

Comments
 (0)