Open
Description
API Spec link
API Spec version
2024-04-01
Describe the bug
As described by arjunchiddarwar in 'Trigger workflows in Standard logic apps with Easy Auth', Logic App Standard can be configured not to accept SAS tokens for HTTP triggers using the following ARM.
"logicAppsAccessControlConfiguration": {
"triggers": {
"sasAuthenticationPolicy": {
"State": "Disabled"
}
}
}
Expected behavior
logicAppsAccessControlConfiguration
is available as property on Microsoft.Web/sites
Actual behavior
logicAppsAccessControlConfiguration
is not a known property on Microsoft.Web/sites
. When deploying ARM/Bicep using the property the deployment succeeds and looking in the Azure Resource Explorer the property is set correctly.
Reproduction Steps
Used Bicep that works, but the logicAppsAccessControlConfiguration
is not recognized as valid property. I have valided that this is not a Bicep issue, but that the property is also missing in this repo.
resource functionApp 'Microsoft.Web/sites@2024-04-01' = {
name: functionAppName
location: location
kind: 'functionapp,workflowapp'
properties: {
...,
logicAppsAccessControlConfiguration: {
triggers: {
sasAuthenticationPolicy: {
state: 'Disabled'
}
}
}
}
}
Environment
No response
Metadata
Metadata
Assignees
Labels
This issue is related to a management-plane library.Workflow: This issue is responsible by Azure service team.This issue requires a change to an existing behavior in the product in order to be resolved.Issues that are reported by GitHub users external to the Azure organization.The issue doesn't require a change to the product in order to be resolved. Most issues start as that