@David McDougald Thanks for reaching out. The configuration - MaximumStatelessVariableSize
needs to go to host.json and not in the app settings, as mentioned in the below documentation - Edit runtime and environment settings for Standard logic apps - Azure Logic Apps | Microsoft Learn.
Below is a sample host.json for increasing the variable size limit from 1024 to 2048 characters.
{
"version": "2.0",
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
"version": "[1.*, 2.0.0)"
},
"extensions": {
"workflow": {
"settings": {
"Runtime.Backend.VariableOperation.MaximumStatelessVariableSize": "2048"
}
}
}
}
After making this change, ensure that you restart your Logic App for the new settings to take effect.
do let me know incase of further queries, I would be happy to assist you.