Skip to content

Creating Labs

WIP

WIP

Terminal window
instruqt lab create my-new-lab
cd my-new-lab

Edit lab.hcl to define your lab:

resource "lab" "my_new_lab" {
title = "My New Lab"
description = "Learn something awesome"
settings {
idle_timeout {
enabled = true
timeout = 3600 # 1 hour
}
}
chapters = [
instruqt_chapter.introduction,
instruqt_chapter.hands_on,
]
}

WIP