You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/service-bus-messaging/transport-layer-security-configure-minimum-version.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.author: egrootenboer
11
11
12
12
# Configure the minimum TLS version for a Service Bus namespace
13
13
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).
15
15
16
16
You can configure the minimum TLS version using the Azure portal or Azure Resource Manager (ARM) template.
17
17
@@ -28,28 +28,28 @@ You can also specify the minimum TLS version for an existing namespace on the **
28
28
:::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.":::
29
29
30
30
## 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`.
32
32
33
33
```azurecli-interactive
34
34
az servicebus namespace create \
35
35
--name mynamespace \
36
36
--resource-group myresourcegroup \
37
-
--min-tls 1.2
37
+
--min-tls 1.3
38
38
```
39
39
40
40
## 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`.
42
42
43
43
```azurepowershell-interactive
44
44
New-AzServiceBusNamespace `
45
45
-ResourceGroup myresourcegroup `
46
46
-Name mynamespace `
47
-
-MinimumTlsVersion 1.2
47
+
-MinimumTlsVersion 1.3
48
48
```
49
49
50
50
51
51
## 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.
53
53
54
54
> [!NOTE]
55
55
> 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