Error while setting alert conditions for azure budget via powershell

Hi,

I am writing a script to set azure consumption budget and notification alert to subscription owner.
Everything is working fine except setting up an action group.

Below is the command i am using

set-azurermconsumptionbudget -name Azureconsumption -notificationkey actual_greaterthan_80_percent -contactgroup ‘Budget- 2019’ -contactemail XXXX@domain.com,xxxx@domain.com

Set-AzureRmConsumptionBudget : Operation returned an invalid status code ‘Unauthorized’

At line:1 char:1

Can any one tell me the proper format or the solution to this?

 

Thanks,

Shesha

Have you tried something like this?

Set-AzureRmConsumptionBudget -Name  Azureconsumption -NotificationKey actual_greaterthan_80_percent -NotificationEnabled -NotificationThreshold 90 -ContactEmail xxxx@domain.com,janesmith@contoso.com -ContactRole Owner,Reader,Contributor

No luck,

I am still getting the “unauthorized” error

 

Thanks,

Shesh