Skip to content

Commit 93da8f2

Browse files
danielpaulusclaude
andcommitted
docs(ssl): UUID client-certificate placeholder + built-in (not account-level) default baseline
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DXP63MTUyPnuc48ZWGovhR
1 parent 54a9715 commit 93da8f2

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

constructs/ssl-monitor.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,24 +225,24 @@ Omit to connect without a client certificate.
225225
```ts
226226
sslConfig: {
227227
clientCertificateMode: "explicit",
228-
sslClientCertificateId: "cert_abc123",
228+
sslClientCertificateId: "9e83b6d8-a1e5-4c7b-8f0a-3d2e1c4b5a69",
229229
}
230230
```
231231
</ResponseField>
232232

233233
<ResponseField name="sslClientCertificateId" type="string">
234-
The ID of the stored client certificate to present during the TLS handshake. Required when `clientCertificateMode` is `'explicit'`. Client certificates are managed under **Settings → Client Certificates** in the Checkly dashboard.
234+
The UUID of the stored client certificate to present during the TLS handshake. Required when `clientCertificateMode` is `'explicit'`. Client certificates are managed under **Settings → Client Certificates** in the Checkly dashboard.
235235

236236
```ts
237237
sslConfig: {
238238
clientCertificateMode: "explicit",
239-
sslClientCertificateId: "cert_abc123",
239+
sslClientCertificateId: "9e83b6d8-a1e5-4c7b-8f0a-3d2e1c4b5a69",
240240
}
241241
```
242242
</ResponseField>
243243

244244
<ResponseField name="securityBaseline" type="SecurityBaseline">
245-
Override the account-level security baseline for this monitor. Omit to inherit the account default.
245+
Override the default security baseline for this monitor. Omit to inherit the built-in default baseline.
246246

247247
```ts
248248
sslConfig: {
@@ -475,7 +475,7 @@ new SslMonitor("my-ssl-monitor", {
475475
hostname: "mtls.api.example.com",
476476
sslConfig: {
477477
clientCertificateMode: "explicit",
478-
sslClientCertificateId: "cert_abc123",
478+
sslClientCertificateId: "9e83b6d8-a1e5-4c7b-8f0a-3d2e1c4b5a69",
479479
alertDaysBeforeExpiry: 30,
480480
},
481481
assertions: [

detect/uptime-monitoring/ssl-monitors/configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ You can override the default severity for each rule:
6161
Each rule accepts a `severity` of `fail`, `degrade`, or `ignore`. Set `enabled: false` to disable the baseline entirely for a monitor.
6262

6363
<Note>
64-
Omitting the `securityBaseline` field inherits the account-level default baseline. Override it on a per-monitor basis only when you need non-standard thresholds for a specific endpoint.
64+
Omitting the `securityBaseline` field applies Checkly's built-in default baseline (the defaults listed above). Override it on a per-monitor basis only when you need non-standard thresholds for a specific endpoint.
6565
</Note>
6666

6767
### Assertions

0 commit comments

Comments
 (0)