skip to Main Content

Remove Role assignment using powershell in azure

when im trying to remove role assignment for a storage account using azure automation account Remove-AzRoleAssignment -SignInName "[email protected]" -RoleDefinitionName "Storage File Data SMB Share Contributor" -Scope "/subscriptions/000-8888-7777/resourceGroups/$resourcegroup/providers/Microsoft.Storage/storageAccounts/$storageaccount" using above command getting Cannot find principle using specified options

VIEW QUESTION

Create a topic with authorization rule using azure-messaging-servicebus

I'm trying to create a topic using ServiceBusAdministrationClient connected through a namespace's root manage access key (com.azure:azure-messaging-servicebus:7.8.0) def createOptions = new CreateTopicOptions() def authRule = new SharedAccessAuthorizationRule(authRuleName, [AccessRights.SEND, AccessRights.LISTEN]) createOptions.authorizationRules.add(authRule) def topicProps = administrationClient.createTopic(topicName, createOptions) but there are no AuthorizationRules…

VIEW QUESTION

Connect Azure App Configuration to Azure WebJobs

I have multiple webjobs that should take their connection strings and application settings from Azure App Configuration. I've tried following steps present in https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-dotnet-app for app.config files in each webjob and for Web.config file of web application hosted with said…

VIEW QUESTION

Azure Application Insights | KQL | Get exception details

We are using Azure application Insights for error logging. I am new to KQL and trying to fetch custom properties from inbuilt "customDimensions" column in the following format, Data in "customDimensions" column { "File Name":"Sample File 1", "Correlation ID":"e33a8d45-0566-4bf2-94f8-54a6fec29bff", "Error…

VIEW QUESTION
Back To Top
Search