Lab
Lab
The lab
resource provides the metadata about the lab and some of its configuration.
This is the equivalent of what is currently called a "track".
Attributes
Title title
required
type: string
The title of the lab.
Description description
required
type: string
A description of the lab.
Tags tags
type: []string
Tags that describe the lab.
Settings that configure the lab.
A layout that can be used within the lab. This block can be specified multiple times on a lab resource, to allow using multiple layouts throughout a lab.
The instructional content of the lab that is presented to the end-user.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Meta ID meta.id
string
The full ID of the resource e.g. `resource.type.name`. This is computed from the full resource path:
Meta Type meta.type
string
The type of the resource. This taken from the type label of the resource definition.
Meta Name meta.name
string
The name of the resource. This taken from the name label of the resource definition.
DefaultLayout default_layout
type: string
The default layout is determined by the first layout that has the `default` field set to `true`. In the case that no layout has a default set, the first layout defined on the lab will be set as the default.
Settings
Settings that configure the lab.
Attributes
Theme theme
type: string
default: modern_dark
The theme used to style the lab.
Configure the timelimit settings.
Configure the idle timeout settings.
Configure the controls that are presented to the end-user.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
TimeLimit
Configure the timelimit settings.
Attributes
Duration duration
type: int
default: 15
The maximum duration of the lab in minutes.
Extend extend
type: int
default: 0
How long the lab can be extended in minutes once the timelimit is hit. Set to 0 to disable extending.
ShowTimer show_timer
type: bool
default: true
Whether or not to show the timelimit timer to the end-user.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Idle
Configure the idle timeout settings.
Attributes
Enabled enabled
type: bool
default: true
Whether or not idle timeout is enabled.
Timeout timeout
type: int
default: 5
The inactivity duration in minutes after which an end user will be timed out.
ShowWarning show_warning
type: bool
default: true
Whether or not to show an idle timeout warning to the end user.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Controls
Configure the controls that are presented to the end-user.
Attributes
ShowStop show_stop
type: bool
default: true
Whether or not to show the stop lab button to the end-user.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Layout
A layout that can be used within the lab. Layouts define what panels and tabs are visible and how they are arranged.
Attributes
Name name
required
type: string
The name of the layout, that can be used by chapters and pages to switch to.
A reference to the layout that defines the panels.
Default default
type: bool
Whether or not the layout of the default one to use when the lab does not have any instructional content.
The tabs that are used within the layout.
The instructional content that is displayed in the layout.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Tab
A tab that is used within the layout and points at a tab target e.g. Terminal, Service, Editor, etc.
Attributes
Name name
required
type: string
The Name of the tab.
Panel panel
required
type: string
The name of the panel of the layout that the tab is displayed in.
The target resource of the tab that is shown when the tab is active.
Title title
type: string
The title of the tab.
Active active
type: bool
Whether or not the tab is active.
Visible visible
type: bool
Whether or not the tab is visible.
Closeable closeable
type: bool
Whether or not the tab is closeable.
Movable movable
type: bool
Whether or not the tab is movable.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Instructions
The instructional content that is displayed in the layout.
Attributes
Panel panel
required
type: string
The panel of the layout that the instructions are displayed in.
Title title
type: string
The title of the instructions tab.
Active active
type: bool
Whether or not the tab is active.
Visible visible
type: bool
Whether or not the tab is visible.
Closeable closeable
type: bool
Whether or not the tab is closeable.
Movable movable
type: bool
Whether or not the tab is movable.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Content
The instructional content of the lab that is presented to the end-user.
Attributes
Title title
type: string
The title of the content tab.
The chapters that are part of the content.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Chapter
A chapter within the content.
Attributes
Slug slug
required
type: string
The slug of the chapter.
Title title
required
type: string
The title of the chapter.
LayoutName layout_name
type: string
The default layout for all pages in the chapter.
The pages that are part of the chapter.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Page
A page within a chapter that is part of the content.
Attributes
Slug slug
required
type: string
The slug of the page.
A reference to the resource of the page that contains the content.
Title title
type: string
The title of the page. This overrides the title of the page source.
LayoutName layout_name
type: string
The layout to use for the page. When switching to that page, the layout will then change to the selected layout.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Examples
Full Example
Last updated