You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resource logicApp 'Microsoft.Logic/workflows@2019-05-01' = {
name: logicAppName
location: location
tags: {
displayName: logicAppName
createdBy: releaseInfo
}
identity: {
type: 'SystemAssigned'
}
properties: {
definition: json(loadTextContent('./logicapp-definitions/logicapp-case-definition.json'))
parameters: {
infra: {
type: 'Object' // I am defining the parameter in the parameters object on the logic app itself here from bicep. This one is removed after deployment.
value: infra
}
}
}
dependsOn: []
}
Redacted content of my workflow file
{
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"contentVersion": "1.0.0.0",
"triggers": {
"some": "trigger"
},
"actions": {},
"outputs": {},
"parameters": {
"infra": {
"type": "Object" // This one is properly transferred to the logic app.
}
}
}
Browser
Edge
Additional context
The old designer did not have this problem.
The text was updated successfully, but these errors were encountered:
Describe the Bug with repro steps
You will now see that the parameter types that have been defined are gone from the code code that defines the logic app definition.
If you try saving the logic app from the code view (after deployment, unchanged), an error will popup:
IF you manually add the type to the code view (in the json), the file will save properly, and you can make manual edits fine.
If you refresh the page, the error will appear again (and this data will be gone from the code view again.
What type of Logic App Is this happening in?
Consumption (Portal)
Which operating system are you using?
Windows
Are you using new designer or old designer
New Designer
Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg
Yes
Workflow JSON
Bicep for rolling out:
Redacted content of my workflow file
Browser
Edge
Additional context
The old designer did not have this problem.
The text was updated successfully, but these errors were encountered: