@Harshal Sonparote Thanks for reaching out.
As only one CRON expression can be used for a single timer trigger in Azure Functions.
To run the same function app at different local times for different regions, you will need to create multiple timer triggers with different CRON expressions, each set to the appropriate local time for the region.
In case if you want to manage the code at one place and don't want to copy/paste in all code then you can create one HTTP trigger/different method which has your main logic and other three timer trigger that run with different CORN expression. Now in your individual timer trigger you need to need to make the HTTP call/other method to trigger your main logic/function.