***

title: isConfigured
slug: /reference/typescript/agents/configuration/ssl-config/is-configured
description: Check whether SSL is fully configured with cert and key files on disk.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Check whether SSL is fully configured: enabled with both certificate and key
files present on disk.

## **Parameters**

None.

## **Returns**

`boolean` -- `true` if SSL is enabled and both cert and key files exist on disk.

## **Example**

```typescript {4}
import { SslConfig } from '@signalwire/sdk';

const ssl = new SslConfig();
if (ssl.isConfigured()) {
  console.log('SSL is ready');
}
```