Skip to content

Commit 75cfe86

Browse files
We no longer support TLS versions below 1.2
1 parent 9f6aa84 commit 75cfe86

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/service-bus-messaging/transport-layer-security-configure-minimum-version.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: egrootenboer
1111

1212
# Configure the minimum TLS version for a Service Bus namespace
1313

14-
Azure Service Bus namespaces permit clients to send and receive data with TLS 1.0 and above. To enforce stricter security measures, you can configure your Service Bus namespace to require that clients send and receive data with a newer version of TLS. If a Service Bus namespace requires a minimum version of TLS, then any requests made with an older version will fail. For conceptual information about this feature, see [Enforce a minimum required version of Transport Layer Security (TLS) for requests to a Service Bus namespace](transport-layer-security-enforce-minimum-version.md).
14+
Azure Service Bus namespaces permit clients to send and receive data with TLS 1.2 and above. To enforce stricter security measures, you can configure your Service Bus namespace to require that clients send and receive data with a newer version of TLS. If a Service Bus namespace requires a minimum version of TLS, then any requests made with an older version will fail. For conceptual information about this feature, see [Enforce a minimum required version of Transport Layer Security (TLS) for requests to a Service Bus namespace](transport-layer-security-enforce-minimum-version.md).
1515

1616
You can configure the minimum TLS version using the Azure portal or Azure Resource Manager (ARM) template.
1717

@@ -28,28 +28,28 @@ You can also specify the minimum TLS version for an existing namespace on the **
2828
:::image type="content" source="./media/transport-layer-security-configure-minimum-version/existing-namespace-tls.png" alt-text="Screenshot showing the page to set the minimum TLS version for an existing namespace.":::
2929

3030
## Use Azure CLI
31-
To **create a namespace with minimum TLS version set to 1.2**, use the [`az servicebus namespace create`](/cli/azure/servicebus/namespace#az-servicebus-namespace-create) command with `--min-tls` set to `1.2`.
31+
To **create a namespace with minimum TLS version set to 1.3**, use the [`az servicebus namespace create`](/cli/azure/servicebus/namespace#az-servicebus-namespace-create) command with `--min-tls` set to `1.3`.
3232

3333
```azurecli-interactive
3434
az servicebus namespace create \
3535
--name mynamespace \
3636
--resource-group myresourcegroup \
37-
--min-tls 1.2
37+
--min-tls 1.3
3838
```
3939

4040
## Use Azure PowerShell
41-
To **create a namespace with minimum TLS version set to 1.2**, use the [`New-AzServiceBusNamespace`](/powershell/module/az.servicebus/new-azservicebusnamespace) command with `-MinimumTlsVersion` set to `1.2`.
41+
To **create a namespace with minimum TLS version set to 1.3**, use the [`New-AzServiceBusNamespace`](/powershell/module/az.servicebus/new-azservicebusnamespace) command with `-MinimumTlsVersion` set to `1.3`.
4242

4343
```azurepowershell-interactive
4444
New-AzServiceBusNamespace `
4545
-ResourceGroup myresourcegroup `
4646
-Name mynamespace `
47-
-MinimumTlsVersion 1.2
47+
-MinimumTlsVersion 1.3
4848
```
4949

5050

5151
## Create a template to configure the minimum TLS version
52-
To configure the minimum TLS version for a Service Bus namespace, set the `MinimumTlsVersion` version property to 1.0, 1.1, or 1.2. When you create a Service Bus namespace with an Azure Resource Manager template, the `MinimumTlsVersion` property is set to 1.2 by default, unless explicitly set to another version.
52+
To configure the minimum TLS version for a Service Bus namespace, set the `MinimumTlsVersion` version property to 1.2 or 1.3. When you create a Service Bus namespace with an Azure Resource Manager template, the `MinimumTlsVersion` property is set to 1.2 by default, unless explicitly set to another version.
5353

5454
> [!NOTE]
5555
> Namespaces created using an api-version prior to 2022-01-01-preview will have 1.0 as the value for `MinimumTlsVersion`. This behavior was the prior default, and is still there for backwards compatibility.

0 commit comments

Comments
 (0)