We are currently developing an application based on cap. In this application we use the BTP workflow service. For the workflow service to work, we need to define authorities as parameters for our workflow instance. Since I dont want to set these values for each environment by myself, I want to define everything in the mta.yml, so the workflow service is created correctly without me adding these parameters.
While looking into the mta and workflow documentation I found out that one can define configuration parameters in the following way:
- name: app1626_workflowservice
parameters:
content-target: true
config-path: ./workflow-authorities.json
In the workflow-authorities.json we have defined our needed authorities.
Unfortunately this does not seem to work, since the workflow service is not created with the specified authorities.
Do I miss something here or is it not possible to do something like this?