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
#Customer intent: As a developer, I want to learn about extension so that I can efficiently deploy Hybrid Runbook Workers.
10
10
ms.service: azure-automation
@@ -80,7 +80,28 @@ If extension-based Hybrid Worker is using custom Hybrid Worker credentials, then
80
80
> - When a system has UAC/LUA in place, permissions must be granted directly and not through any group membership. [Learn more](troubleshoot/extension-based-hybrid-runbook-worker.md#scenario-runbooks-go-into-a-suspended-state-on-a-hybrid-runbook-worker-when-using-a-custom-account-on-a-server-with-user-account-control-uac-enabled).
81
81
> - Due to a current limitation, these folder permissions are removed from the C:\ProgramData\AzureConnectedMachineAgent\Tokens folder on Azure Arc-enabled machines when the Azure Connected Machine agent is updated. The current resolution is to reapply these permissions to the folder. [Learn more](troubleshoot/extension-based-hybrid-runbook-worker.md#scenario-hybrid-runbook-worker-job-execution-on-azure-arc-enabled-windows-server-that-uses-a-custom-credential-is-unexpectedly-suspended).
82
82
83
+
## Automation account hybrid service url
83
84
85
+
You must retrieve and use the AutomationHybridServiceURL to deploy the Hybrid Worker extension to the VM/Arc machine.
86
+
87
+
> [!NOTE]
88
+
> The necessary URL is the automationHybridServiceUrl, NOT the RegistrationUrl.
89
+
90
+
There are multiple ways to retrieve the value for AutomationHybridServiceUrl:
91
+
92
+
- Copy it from the **Azure portal**, **Automation Account**, **Properties**, **Automation hybrid service URL**.
93
+
94
+
Or
95
+
96
+
- Copy it from the **Azure portal**, **Automation Account**, **Overview**, **JSON** view. </br> Select the latest API version, otherwise AutomationHybridServiceUrl might not be displayed.
97
+
98
+
Or
99
+
- The below REST API call:
100
+
101
+
```rest
102
+
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}?api-version=2023-11-01
103
+
104
+
```
84
105
85
106
## Network requirements
86
107
@@ -103,30 +124,6 @@ If you use a proxy server for communication between Azure Automation and machine
103
124
The API call will provide the value with the key: `AutomationHybridServiceUrl`. Use the URL in the next step to enable extension on the VM.
104
125
105
126
1. Install the Hybrid Worker Extension on the VM by running the following PowerShell cmdlet (Required module: Az.Compute). Use the `properties.automationHybridServiceUrl` provided by the above API call
106
-
107
-
108
-
## Automation Account Hybrid Service URL
109
-
110
-
You must retrieve and use the AutomationHybridServiceURL to deploy the Hybrid Worker extension to the VM/Arc machine.
111
-
112
-
> [!NOTE]
113
-
> The necessary URL is the automationHybridServiceUrl, NOT the RegistrationUrl.
114
-
115
-
There are multiple ways to retrieve the value for AutomationHybridServiceUrl:
116
-
117
-
- Copy it from the **Azure portal**, **Automation Account**, **Properties**, **Automation hybrid service URL**.
118
-
119
-
Or
120
-
121
-
- Copy it from the **Azure portal**, **Automation Account**, **Overview**, **JSON** view. </br> Select the latest API version, otherwise AutomationHybridServiceUrl might not be displayed.
122
-
123
-
Or
124
-
- The below REST API call:
125
-
126
-
```rest
127
-
GET https://westcentralus.management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}?api-version=2021-06-22
128
-
129
-
```
130
127
131
128
# [Windows](#tab/windows)
132
129
@@ -364,9 +361,11 @@ Follow the steps mentioned below as an example:
364
361
```
365
362
1. Follow the steps [here](../active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm.md#enable-system-assigned-managed-identity-on-an-existing-vm) to enable the System-assigned managed identity on the VM.
366
363
367
-
1. Install Hybrid Worker Extension on the VM and Hybrid Worker extension settings for [proxy server use](#proxy-server-use).
364
+
1. Install Hybrid Worker Extension on the VM.
368
365
369
366
**Hybrid Worker extension settings**
367
+
368
+
If you want to add proxy server, see [proxy server use](#proxy-server-use).
0 commit comments