You need to create an Azure Function that is triggered every 5 minutes. Which of the following cron schedules can be used?
0 */5 * * * *
*/5 * * * *
*/5 * * * * *
* */5 * * *
0 5 * * * *
5 * * * *
5 * * * * *
* 5 * * *
Cron schedules supports both 5 and 6 fields ({minute} {hour} {day} {month} {day-of-week} or {second} {minute} {hour} {day} {month} {day-of-week}). To make them run at every 5 minutes, */5 is used.
{minute} {hour} {day} {month} {day-of-week}
{second} {minute} {hour} {day} {month} {day-of-week}
*/5