Я пытаюсь запустить runhell powershell для тегирования ...
Я начал пытаться пометить виртуальную машину, проверил код powershell, и он работает, я запустил строку кода в строку в powershellконсоль портала Azure и он работает, но тот же код в runbook не работает .....
........................ .... код ................................
#credentials
$CredentialAssetName = "kevin";
$Cred = Get-AutomationPSCredential -Name $CredentialAssetName;
Add-AzureRmAccount -Credential $Cred;
#----------------------------------------------------------------
#
#take tags
$r = Get-AzureRmResource -ResourceName "centos-master" -ResourceGroupName VirtualMachines;
$tags=$r.Tags;
#----------------------------------------------------------------
#assign tag to resource
$tags+=@{test3="kevin3"};
Set-AzureRmResource -ResourceGroupName "VirtualMachines" -Name "centos-master" -ResourceType "Microsoft.Compute/VirtualMachines" -Tag $tags -Force;
#----------------------------------------------------------------
заранее спасибо