Skip to content

Commit 33c81c5

Browse files
committed
Disable Local Auth article
1 parent 4b1a51b commit 33c81c5

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

articles/service-bus-messaging/advanced-features-overview.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: Azure Service Bus messaging - advanced features
3-
description: This article provides a high-level overview of advanced features in Azure Service Bus.
4-
ms.topic: overview
3+
description: This article provides a high-level overview of advanced features in Azure Service Bus such as sessions, scheduled delivery, autodelete on ide, etc.
4+
ms.topic: concept-article
55
ms.date: 07/25/2024
6+
#customer intent: as a developer of messaging applications, I want to know what features are supported by Azure Service Bus to make informed decisions.
67
---
78

89
# Azure Service Bus - advanced features
@@ -55,5 +56,5 @@ Service Bus supports standard [Advanced Message Queuing Protocol (AMQP) 1.0](ser
5556

5657
For protection against unwanted traffic, Service Bus provides [security features](network-security.md) such as IP firewall and integration with virtual networks.
5758

58-
## Next steps
59+
## Related content
5960
See [Service Bus messaging samples](service-bus-samples.md) that show how to use these Service Bus features.

articles/service-bus-messaging/disable-local-authentication.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,30 @@
22
title: Disable local authentication with Azure Service Bus
33
description: This article explains how to disable local or Shared Access Signature key authentication for a Service Bus namespace.
44
ms.topic: how-to
5-
ms.date: 02/01/2022
5+
ms.date: 07/25/2024
6+
#customer intent: As a developer or IT adminstrator, I want to know how to disable shared access key authentication and use only the Microsoft Entra ID authentication for higher security.
67
---
78

89
# Disable local or shared access key authentication with Azure Service Bus
9-
There are two ways to authenticate to Azure Service Bus resources: Microsoft Entra ID and Shared Access Signatures (SAS). Microsoft Entra ID provides superior security and ease of use over shared access signatures (SAS). With Microsoft Entra ID, there’s no need to store the tokens in your code and risk potential security vulnerabilities. We recommend that you use Microsoft Entra ID with your Azure Service Bus applications when possible.
10+
There are two ways to authenticate to Azure Service Bus resources:
1011

11-
This article explains how to disable SAS key authentication and use only Microsoft Entra ID for authentication.
12+
- Microsoft Entra ID
13+
- Shared Access Signatures (SAS)
14+
15+
Microsoft Entra ID provides superior security and ease of use over shared access signatures (SAS). With Microsoft Entra ID, there’s no need to store the tokens in your code and risk potential security vulnerabilities. We recommend that you use Microsoft Entra ID with your Azure Service Bus applications when possible.
16+
17+
This article explains how to disable SAS key authentication (or local authentication) and use only Microsoft Entra ID for authentication.
1218

1319
## Use portal to disable local auth
1420
In this section, you learn how to use the Azure portal to disable local authentication.
1521

1622
1. Navigate to your Service Bus namespace in the [Azure portal](https://portal.azure.com).
1723
1. In the **Essentials** section of the **Overview** page, select **Enabled**, for **Local Authentication**.
1824

19-
:::image type="content" source="./media/disable-local-authentication/portal-overview-enabled.png" alt-text="Image showing the Overview page of a Service Bus namespace with Local Authentication set to Enabled.":::
25+
:::image type="content" source="./media/disable-local-authentication/portal-overview-enabled.png" alt-text="Screenshot that shows the Overview page of a Service Bus namespace with Local Authentication set to Enabled." lightbox="./media/disable-local-authentication/portal-overview-enabled.png":::
2026
1. On the **Local Authentication** page, select **Disabled**, and select **OK**.
2127

22-
:::image type="content" source="./media/disable-local-authentication/select-disabled.png" alt-text="Disable location.":::
28+
:::image type="content" source="./media/disable-local-authentication/select-disabled.png" alt-text="Screenshot that shows the selection of Disabled option on the Local Authentication page.":::
2329

2430
## Use Resource Manager template to disable local auth
2531
You can disable local authentication for a Service Bus namespace by setting `disableLocalAuth` property to `true` as shown in the following Azure Resource Manager template.
@@ -69,11 +75,11 @@ You can disable local authentication for a Service Bus namespace by setting `dis
6975
```
7076

7177
## Azure policy
72-
You can assign the [disable local auth](https://portal.azure.com/#blade/Microsoft_Azure_Policy/PolicyDetailBlade/definitionId/%2Fproviders%2FMicrosoft.Authorization%2FpolicyDefinitions%2Fcfb11c26-f069-4c14-8e36-56c394dae5af) Azure policy to an Azure subscription or a resource group to enforce disabling of local authentication for all Service Bus namespaces in the subscription or the resource group.
78+
You can assign the [disable local auth](https://portal.azure.com/#blade/Microsoft_Azure_Policy/PolicyDetailBlade/definitionId/%2Fproviders%2FMicrosoft.Authorization%2FpolicyDefinitions%2Fcfb11c26-f069-4c14-8e36-56c394dae5af) Azure policy to an Azure subscription or a resource group to enforce disabling of local authentication for all Service Bus namespaces in the subscription or the resource group.
7379

74-
:::image type="content" source="./media/disable-local-authentication/azure-policy.png" alt-text="Azure policy to disable location authentication.":::
80+
:::image type="content" source="./media/disable-local-authentication/azure-policy.png" alt-text="Azure policy to disable location authentication." lightbox="./media/disable-local-authentication/azure-policy.png":::
7581

76-
## Next steps
82+
## Related content
7783
See the following to learn about Microsoft Entra ID and SAS authentication.
7884

7985
- [Authentication with SAS](service-bus-sas.md)

0 commit comments

Comments
 (0)