Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 3.38 KB

disable-local-authentication.md

File metadata and controls

45 lines (31 loc) · 3.38 KB
title description services ms.subservice ms.date ms.custom ms.topic
Disable local authentication in Azure Automation
This article describes disabling local authentication in Azure Automation.
automation
process-automation
09/30/2022
engagement-fy23
how-to

Disable local authentication in Automation

Important

  • Update Management patching will not work when local authentication is disabled.
  • When you disable local authentication, it impacts the starting a runbook using a webhook, Automation Desired State Configuration and agent-based Hybrid Runbook Workers. For more information, see the available alternatives.

Azure Automation provides Microsoft Azure Active Directory (Azure AD) authentication support for all Automation service public endpoints. This critical security enhancement removes certificate dependencies and gives organizations control to disable local authentication methods. This feature provides you with seamless integration when centralized control and management of identities and resource credentials through Azure AD is required.

Azure Automation provides an optional feature to "Disable local authentication" at the Automation account level using the Azure policy Configure Azure Automation account to disable local authentication. By default, this flag is set to false at the account, so you can use both local authentication and Azure AD authentication. If you choose to disable local authentication, then the Automation service only accepts Azure AD based authentication.

In the Azure portal, you may receive a warning message on the landing page for the selected Automation account if authentication is disabled. To confirm if the local authentication policy is enabled, use the PowerShell cmdlet Get-AzAutomationAccount and check property DisableLocalAuth. A value of true means local authentication is disabled.

Disabling local authentication doesn't take effect immediately. Allow a few minutes for the service to block future authentication requests.

Note

  • Currently, PowerShell support for the new API version (2021-06-22) or the flag – DisableLocalAuth is not available. However, you can use the Rest-API with this API version to update the flag.

Re-enable local authentication

To re-enable local authentication, execute the PowerShell cmdlet Set-AzAutomationAccount with the parameter -DisableLocalAuth false.  Allow a few minutes for the service to accept the change to allow local authentication requests.

Compatibility

The following table describes the behaviors or features that are prevented from working by disabling local authentication.

Scenario Alternative
Starting a runbook using a webhook. Start a runbook job using Azure Resource Manager template, which uses Azure AD authentication.
Using Automation Desired State Configuration. Use Azure Policy Guest configuration.  
Using agent-based Hybrid Runbook Workers. Use extension-based Hybrid Runbook Workers (Preview).

Next steps