skip to Main Content

MSINotEnabled – Can't use KeyVault Reference in Azure Function

I'm trying to use a User Assign Managed Identity to retrieve access in KeyVault reference in Azure Function. I'm following this doc https://learn.microsoft.com/en-us/azure/app-service/app-service-key-vault-references?tabs=azure-cli#:~:text=you%20haven%27t%20already.-,Configure,-the%20app%20to to reference the keyvault in the application configuration. I followed these steps: Created User Assign Managed Identity.…

VIEW QUESTION

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
Back To Top
Search