Created
August 9, 2024 15:34
-
-
Save waldekmastykarz/fcd0bb126bdd8218d50abc50bf57d5d8 to your computer and use it in GitHub Desktop.
Create Entra app reg, with a service principal and admin consent using bicep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extension microsoftGraph | |
| resource appRegistration 'Microsoft.Graph/applications@v1.0' = { | |
| displayName: 'My Graph connector' | |
| uniqueName: 'my-graph-connector' | |
| signInAudience: 'AzureADMyOrg' | |
| requiredResourceAccess: [ | |
| { | |
| resourceAppId: '00000003-0000-0000-c000-000000000000' | |
| resourceAccess: [ | |
| { | |
| id: 'f431331c-49a6-499f-be1c-62af19c34a9d' | |
| type: 'Role' | |
| } | |
| { | |
| id: '8116ae0f-55c2-452d-9944-d18420f5b2c8' | |
| type: 'Role' | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| resource sp 'Microsoft.Graph/servicePrincipals@v1.0' = { | |
| appId: appRegistration.appId | |
| } | |
| resource graphSp 'Microsoft.Graph/servicePrincipals@v1.0' existing = { | |
| appId: '00000003-0000-0000-c000-000000000000' | |
| } | |
| resource externalConnectionReadWriteOwnedByAssignment 'Microsoft.Graph/appRoleAssignedTo@v1.0' = { | |
| principalId: sp.id | |
| resourceId: graphSp.id | |
| appRoleId: 'f431331c-49a6-499f-be1c-62af19c34a9d' | |
| } | |
| resource externalItemReadWriteOwnedByAssignment 'Microsoft.Graph/appRoleAssignedTo@v1.0' = { | |
| principalId: sp.id | |
| resourceId: graphSp.id | |
| appRoleId: '8116ae0f-55c2-452d-9944-d18420f5b2c8' | |
| } | |
| output appId string = appRegistration.appId | |
| output spId string = sp.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment