New to Kestra?
Use blueprints to kickstart your first workflows.
Provision a Miro workshop board with Kestra. Create the board with a team sharing policy and post the view link to Slack before the session starts.
Every workshop starts the same way, someone scrambles to create a board, set permissions, and paste the link into the channel while attendees wait. This blueprint turns that into one execution. io.kestra.plugin.miro.boards.Create creates the board in the correct Miro team with a sharingPolicy that keeps the board private to outsiders while granting the whole team edit access, and the flow posts the board's viewLink to Slack so the link is in the channel before anyone asks for it.
create_board (io.kestra.plugin.miro.boards.Create) creates a board named after the workshop_name input inside the team from the team_id input. The sharingPolicy map sets access: private and teamAccess: edit, so team members can facilitate without per-board permission edits.{{ outputs.create_board.id }}, {{ outputs.create_board.viewLink }}, and {{ outputs.create_board.createdAt }}.notify posts the board name and view link to Slack through an incoming webhook.errors block posts a distinct Slack alert when creation fails, naming the flow and execution so the facilitator can react before the session.workshop_name input, so boards stay findable after the session.Creating a board is one API call, but the workflow around it is not: the permissions have to be right, the link has to reach the channel, and a failure has to reach a human. Kestra wraps the single Miro call with typed inputs, secret management for the token, output passing into the Slack message, and a complete execution history of every board ever provisioned.
boards:write scope.MIRO_ACCESS_TOKEN: Miro OAuth 2.0 access token.SLACK_WEBHOOK_URL: Slack incoming webhook URL.projectId property on create_board to file boards into a Miro project per initiative.sharingPolicy to teamAccess: view for read-only audiences such as stakeholder reviews.boards.Copy task instead of Create when workshops should start from a prepared template, as shown in the retro board blueprint.