Replies: 2 comments
-
@nezuko-cc This looks like it may be a different problem. I will get back to you shortly. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@nezuko-cc It looks like you are a Microsoft employee - can you reach out to me over Teams please? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have a bicep template that creates an Entra application. It works when I am the one deploying it and the app would have my account as the owner.
![image](https://private-user-images.githubusercontent.com/11483194/385487186-04712272-ee78-414d-99ae-d48c624145c9.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzODI3ODQsIm5iZiI6MTczOTM4MjQ4NCwicGF0aCI6Ii8xMTQ4MzE5NC8zODU0ODcxODYtMDQ3MTIyNzItZWU3OC00MTRkLTk5YWUtZDQ4YzYyNDE0NWM5LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEyVDE3NDgwNFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWI0NzY3NjdlYTRmN2JlMWMxNDZjNzBjYTk3ZDUzMzZmZGMyNzFjMzAwYTcwNzMwNjU3NDUzMmRiYjUxYzVmMjgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.xBp9psmg-hgo8yXHkJR3AqCoKA9H7M8D51IWgU5rfpg)
However, what I really need is to have this Entra app creation integrated into Azure Managed Application. I think Azure Managed Application by default uses their own service principal (see below) to do all the resource creation.
But I got this error message
"message": "{\"error\":{\"code\":\"BadRequest\",\"target\":\"/resources/entraApp\",\"message\":\"AppOnly OBO tokens not supported by target service. Graph client request id: 75247f85-fd1a-4137-8b25-89e6c4f97772. Graph request timestamp: 2024-11-12T22:02:41Z.\"}}"
I am wondering if the Entra app creation is supposed to work for non-user deployer like the SP of managed application?
If yes, is the SP missing some permission? If no, is there a suggested way to make Entra app creation integrated into CI/CD pipeline?
Beta Was this translation helpful? Give feedback.
All reactions