Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
@prasantc To follow up to your question, to my knowledge, there is no built-in function in Bicep that allows you to convert a Bicep parameter file to JSON or text. However, you can use the loadTextContent function to load the contents of a Bicep parameter file as a string, and then parse it using a JSON parser or other text processing tools.
For example, you can use the following code to load the contents of a Bicep parameter file as a string:
var paramContent = loadTextContent('path/to/params.bicep');
You can then use a JSON parser to parse the string into a JSON object:
var paramObject = JSON.parse(paramContent);
Once you have the JSON object, you can pass it to your module as a parameter.
I hope this helps. Let me know if you have any further questions or concerns.