Questions tagged [azure-managed-identity]

Azure AD managed identities for Azure resources.

For more information, see the documentation.

795 questions
1
vote
2 answers

Azure Function Output Binding Event Grid Managed Identity

Im trying to write an Azure function which has an Event Grid output binding, how do I configure it to use a manage identity instead of the topic key ? [Function("TestEventGrid")] [EventGridOutput(TopicEndpointUri =…
Gary
  • 11
  • 1
1
vote
1 answer

Azure Managed Identity Token couldn't produce from local

This is a continuation of the ticket Restrict Access with Azure Managed Identity in .NET Core Web API where I configured a .NET Core Web API to secured with user-assigned Azurre Managed Identity. This Web API has been deployed as…
Jaish Mathews
  • 766
  • 1
  • 9
  • 25
1
vote
0 answers

Azure CLI not found on path Stack

I'm working on an azure python app function of queue trigger type that create a VM once triggered. To do so, I need to work with the ManagedIdentityCredential() in order to acquire a credential object using CLI-based authentication but I'm having…
1
vote
1 answer

Unable to fetch secret value from Key Vault using system managed identity in C# Azure Function

I had enabled system assigned managed identity in azure function(Service bus topic trigger) and added the identity(Object (principal) ID ) in key vault access policy with "Get,List" permissions of secrets, keys. I added the reference of the Key…
1
vote
0 answers

Azure SQL Managed Identities with App Service - is AD Authentication required for this? Is there a bicep file somebody can share?

I am really struggling regarding my Azure SQL configuration. I have an app I want to move from a prototype to production and I want to use Azure SQL Database with Managed Identities and SQL Authentication with App Services so I don't need to deal…
lcj
  • 1,355
  • 16
  • 37
1
vote
1 answer

Allow App Service to be called by just a test user and another App Service using a system assigned managed identity

I have an app service, let's call it Shiny API. It exposes functionality to my clients. Users authenticate using oAuth through a third party identity provider. One of the data sources for this app service is in another app service within the same…
1
vote
0 answers

Getting error while creating SQL Server with UMI (User Manage Identity)

I'm getting this error message while executing this Terraform code: resource "azurerm_mssql_server" "sql_server" { name = var.sql_server_name resource_group_name = var.rg_name location =…
1
vote
2 answers

is it possible to connect sql server using object id from azure managed identity in data bricks

please can some one guide me how to Establish Connection to SQL server using manage identity in data bricks using manage identity object id I am using following code ''' from azure.core.exceptions import ClientAuthenticationError from azure.identity…
1
vote
1 answer

Retrieve app id of Synapse service principal and add as administrator to AAS using Bicep

I'm deploying Azure services by using Bicep. The property 'identity type system assigned' creates an enterprise application/service principal with a name, object id and app id. This is required to be able to process Azure Analysis Services from a…
1
vote
1 answer

Api connections(keyvault, servicebus and blob ) using managed identity through bicep

Hi I am trying to create API connections for Key Vault, service bus and storage account using bicep. unfortunately do not see clear documentation from Microsoft side. created API connections(Azure Key Vault, Service Bus and storage account) using…
1
vote
1 answer

Calling API from python azure function with managed identity

I am trying to use a python azure function to call an API running on an Azure app service. (I have managed to get the webAPI to call the function-trigger (managed-identity and all that), but the function needs data that can be retrieved from the…
1
vote
1 answer

Give System Managed Identity access to classic SQL Server

I've got an Azure App Service that needs access to a classic SQL Server (non-Azure SQL, not SQL Managed Instance) and I'd prefer to do this via System Managed Identity. This is enabled on the App Service and a corresponding Enterprise Application is…
Simmetric
  • 1,443
  • 2
  • 12
  • 20
1
vote
1 answer

Login failed for user ''. Token is expired

I have a webjob hosted within Azure which is scheduled to run continuous mode type. In this webjob I have some database operations which are managed using EntityFrameworkCore. I am also using userassigned ManagedIdentity to get the token and pass it…
1
vote
2 answers

Does Google Cloud have anything similar to Managed Identity offered by Azure?

Does Google Cloud have anything similar to the managed identity offered by Azure. Refer the video in below link: https://learn.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview As I understand Managed Identity…
1
vote
0 answers

Login failed for user ''. using UserAssignedManagedIdentity while fetching data from AzureSQL

I have created a Managed Identity (User Assigned) using Azure portal. I attached that MSI with Azure App Service Added appropriate permissions for the MSI at Azure SQL (Database) In this implementation I am using Microsoft.EntityFrameworkCore…