Open cconrado opened 2 months ago
Microsoft.Graph/applications
1.0
Missing property(s)
The doc says it's in the resource. https://learn.microsoft.com/en-us/graph/templates/reference/applications?view=graph-bicep-1.0
But in vscode it says it's not in the resource type.
resource fsmApp 'Microsoft.Graph/applications@v1.0' = { displayName: AADAppName uniqueName: AADAppName signInAudience: 'AzureADMyOrg' web: { redirectUris: [ AADAppReply ] implicitGrantSettings: { enableIdTokenIssuance: true } } identifierUris: [ AADAPPSignOn ] oauth2PermissionScopes: [ { value: 'user_impersonation' type: 'User' adminConsentDisplayName: 'Access' adminConsentDescription: 'Access' userConsentDisplayName: 'Access' userConsentDescription: 'Access' } ] }
Resource Type
Microsoft.Graph/applications
Api Version
1.0
Issue Type
Missing property(s)
Other Notes
The doc says it's in the resource. https://learn.microsoft.com/en-us/graph/templates/reference/applications?view=graph-bicep-1.0
But in vscode it says it's not in the resource type.
Bicep Repro
resource fsmApp 'Microsoft.Graph/applications@v1.0' = { displayName: AADAppName uniqueName: AADAppName signInAudience: 'AzureADMyOrg' web: { redirectUris: [ AADAppReply ] implicitGrantSettings: { enableIdTokenIssuance: true } } identifierUris: [ AADAPPSignOn ] oauth2PermissionScopes: [ { value: 'user_impersonation' type: 'User' adminConsentDisplayName: 'Access' adminConsentDescription: 'Access' userConsentDisplayName: 'Access' userConsentDescription: 'Access' } ] }
Confirm