Skip to main content

signaloid-cli builds variables

List the output variables discovered for a build.

Synopsis

signaloid-cli builds variables --build-id <id> [--start-key <key>]

Options

OptionRequiredDescription
--build-id <id>YesBuild ID
--start-key <key>NoPagination cursor token (from a previous response's ContinuationKey)

Description

Lists the output variables that were discovered for a build when it was created with --discover-variables. Variable discovery must be enabled at build time (see builds create:source or builds create:repo).

Examples

List discovered variables for a build:

signaloid-cli builds variables --build-id bld_xyz789

Paginate through variables:

--start-key takes the ContinuationKey value returned by the previous response. Copy it exactly as returned. You do not need to understand its format or build it yourself. Omit --start-key to fetch the first page.

# First page
signaloid-cli builds variables --build-id bld_xyz789

# Next page, using the ContinuationKey from the previous response
signaloid-cli builds variables --build-id bld_xyz789 --start-key <continuation-key>

See Also