Forrest logo
back to the az tool

az-storage:tldr:8aa73

az-storage: Update the minimum tls version setting for a storage account.
$ az storage account update --min-tls-version TLS1_2 -g ${group_name} -n ${account_name}
try on your machine

The given command is used to update the minimum Transport Layer Security (TLS) version for an Azure storage account. Let's break it down:

  • az storage account update: The command initiates an update operation for an Azure storage account.
  • --min-tls-version TLS1_2: This option specifies the minimum TLS version to set for the storage account, which is TLS 1.2 in this case. TLS is a cryptographic protocol that ensures secure communication over a network.
  • -g ${group_name}: This specifies the resource group name where the storage account resides. ${group_name} is a placeholder that needs to be replaced with the actual name of the resource group.
  • -n ${account_name}: This indicates the name of the storage account that needs to be updated. Similarly, ${account_name} is a placeholder that should be replaced with the actual storage account name.

In summary, the command updates the minimum TLS version to TLS 1.2 for a specific Azure storage account within the specified resource group.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool