Creating Labs
WIP
Lab Creation Workflow
Section titled “Lab Creation Workflow”WIP
Step 1: Initialize Project
Section titled “Step 1: Initialize Project”instruqt lab create my-new-labcd my-new-lab
Step 2: Configure Lab Resources
Section titled “Step 2: Configure Lab Resources”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