[Microsoft.Web/sites]: logicAppsAccessControlConfiguration missing for Logic App Standard
- Dominant language
- TypeScript
- Stars
- 108
- Forks
- 44
- Avg merge
- 18h 53m
- Merged PRs (30d)
- 29
Description
### Resource Type
Microsoft.Web/sites
### Api Version
2024-04-01
### Issue Type
Missing property(s)
### Other Notes
Issue also raised in azure-test-api-spec repo [[BUG] logicAppsAccessControlConfiguration missing on Microsoft.Web/sites for Logic App Standard #32654](https://github.com/Azure/azure-rest-api-specs/issues/32654).
As described by [arjunchiddarwar in 'Trigger workflows in Standard logic apps with Easy Auth'](https://techcommunity.microsoft.com/blog/integrationsonazureblog/trigger-workflows-in-standard-logic-apps-with-easy-auth/3207378/replies/4219276), Logic App Standard can be configured not to accept SAS tokens for HTTP triggers using the following ARM.
```arm
"logicAppsAccessControlConfiguration": {
"triggers": {
"sasAuthenticationPolicy": {
"State": "Disabled"
}
}
}
```
I have tried the equivalent bicep, and this deployed without an issue.
### Bicep Repro
```bicep
resource functionApp 'Microsoft.Web/sites@2024-04-01' = {
name: functionAppName
location: location
kind: 'functionapp,workflowapp'
properties: {
...,
logicAppsAccessControlConfiguration: {
triggers: {
sasAuthenticationPolicy: {
state: 'Disabled'
}
}
}
}
}
```
### Confirm
- [x] I have read the troubleshooting guide and looked for duplicates.
Contributor guide
No contributing guide indexed for this repository
Research direction
Start by locating the Microsoft.Web/sites type definition for API version 2024-04-01 and compare it with the ARM and Bicep examples in this issue. Check the linked azure-rest-api-specs issue for the expected shape, then verify that the logicAppsAccessControlConfiguration property and its SAS authentication policy are represented and accepted for Logic App Standard.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- azure, typescript
- Domain
- cloud, tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100