vikas sharma
vikas sharma

Reputation: 11

Unable to use Config file

I am creating logic App. In this i want to have some values as configurable such as Email ID. How can we create the config file for Logic App and use the values of logic App in run time by replacing the variables

Upvotes: 1

Views: 97

Answers (1)

George Chen
George Chen

Reputation: 14324

If you want to use some files to configure the parameters, yes, you could get parameters , like with json files.

But I recommend you to use Logic Apps native parameters,however you must declare all parameters under "parameters" section of the definition.

Then you could use @parameters('parameterName') expression to reference a parameter within the logic app definition.

About the detailed definition you could refer to this official doc, and this is about Parameters.

Note:you need to notice the maximum parameters is 50.

Hope this could help you, if you still have other questions, please let me know.

Upvotes: 1

Related Questions