From 79df2871ad1179553d5e0f7df74cb7d42703300f Mon Sep 17 00:00:00 2001 From: miliberlin Date: Fri, 4 Oct 2024 09:24:16 +0200 Subject: [PATCH] feat: make env var strings booleans [sc-00] --- site/content/docs/cli/constructs-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/cli/constructs-reference.md b/site/content/docs/cli/constructs-reference.md index 95a53309f..baa21428b 100644 --- a/site/content/docs/cli/constructs-reference.md +++ b/site/content/docs/cli/constructs-reference.md @@ -361,7 +361,7 @@ new ApiCheck('check-group-api-check-1', { - `muted`: A boolean value if alert notifications from the Checks in the group are muted, i.e. not sent out. - `tags`: An array of tags. Group tags trickle down to tags on the individual Checks. i.e. `['product', 'api']` - `runtimeId`: The ID of which [runtime](/docs/runtimes/specs/) to use for the Checks in the group. -- `environmentVariables`: An array of objects defining variables in the group scope, i.e. `[{ key: 'DEBUG', value: 'true', secret: 'true' | locked: 'true' }]` +- `environmentVariables`: An array of objects defining variables in the group scope, i.e. `[{ key: 'DEBUG', value: 'true', secret: true | locked: true }]` - `localSetupScript`: Any JS/TS code as a string to run before each API Check in this group. - `localTearDownScript`: Any JS/TS code as a string to run after each API Check in this group. - `retryStrategy`: A [RetryStrategy](#retrystrategy) object configuring [retries](/docs/alerting-and-retries/) for failed check runs.