> ## Documentation Index
> Fetch the complete documentation index at: https://docs.siderolabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

> TrustedRootsConfig allows to configure additional trusted CA roots.

# TrustedRootsConfig

```yaml theme={null}
apiVersion: v1alpha1
kind: TrustedRootsConfig
name: my-enterprise-ca # Name of the config document.
certificates: | # List of additional trusted certificate authorities (as PEM-encoded certificates).
    -----BEGIN CERTIFICATE-----
    ...
    -----END CERTIFICATE-----
```

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Type</th>
      <th>Description</th>
      <th>Value(s)</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>`name`</td>
      <td>string</td>
      <td>Name of the config document.</td>

      <td />
    </tr>

    <tr>
      <td>`certificates`</td>
      <td>string</td>
      <td>List of additional trusted certificate authorities (as PEM-encoded certificates).<br /><br />Multiple certificates can be provided in a single config document, separated by newline characters.</td>

      <td />
    </tr>
  </tbody>
</table>
