I created some brand new Azure SQL Instances (Tried with both an S3 and a GP_Gen5_2) instance. Right after creating them, I made a new user and tried to grant it permissions using this query from the SQL Insights setup instructions for Azure SQL https://learn.microsoft.com/en-us/azure/azure-sql/database/sql-insights-enable?view=azuresql
CREATE USER telegraf WITH PASSWORD = N'mystrongpassword';
GO
GRANT VIEW DATABASE STATE TO telegraf;
GO
but I get this error back when I try it in SSMS and Azure Data Studio
Msg 4613, Level 16, State 1, Line 4
Grantor does not have GRANT permission.
Does anybody know why I can't grant permissions to that new user even though I'm the admin user? Are there any workarounds/steps that I missed to setting up that user and granting it view perms?