Create Automation Account using PowerShell
Create Automation Account using PowerShell New-AzAutomationAccount
# Connect to Azure
Connect-AzAccount
$RGName = "test-rg"
$AAccountName = "test-aa"
$Location = "UK West"
New-AzAutomationAccount -ResourceGroupName $RGName -Name $AAccountName -Location $Location

Enable System Managed Identity using PowerShell
Enable System Managed Identity using PowerShell Set-AzAutomationAccount
Set-AzAutomationAccount -ResourceGroupName $RGName -Name $AAccountName -AssignSystemIdentity
Copy the System assigned Managed Identity Object (principal) ID
References:
Az PowerShell - New-AzAutomationAccount
https://learn.microsoft.com/en-us/powershell/module/az.automation/new-azautomationaccount
Az PowerShell - Set-AzAutomationAccount
https://learn.microsoft.com/en-us/powershell/module/az.automation/set-azautomationaccount