Add section to configure agent with Moderne SSL certificates

This commit is contained in:
Bryce Tompkins
2025-03-06 15:24:00 -05:00
parent e0bc9014bb
commit 8b6f5fc7bb
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
---
sidebar_label: Moderne tenant SSL certificate configuration
description: How to configure the Moderne agent with Moderne tenant SSL certificates.
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Configure an agent with a Moderne tenant SSL certificate
If your enterprise network security posture requires SSL certificates to be trusted prior to initiating an HTTPS request to your Moderne tenant, you will need to:
* Download the Moderne certificate from your Moderne tenant:
```bash
openssl s_client -showcerts -connect <tenant_name>.moderne.io:443 </dev/null 2>/dev/null | openssl x509 -outform DER > moderne_cert.der
```
* Add the Moderne certificate to the default TrustStore of the agent's JRE:
```bash
keytool -import -trustcacerts -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit -noprompt -alias moderne-cert -file moderne_cert.der
```

View File

@@ -297,6 +297,7 @@ const sidebars: SidebarsConfig = {
'administrator-documentation/moderne-platform/how-to-guides/agent-configuration/configure-an-agent-with-generic-http-tools-for-use-in-recipes',
'administrator-documentation/moderne-platform/how-to-guides/agent-configuration/configure-an-agent-with-strict-recipe-sources',
'administrator-documentation/moderne-platform/how-to-guides/agent-configuration/configure-an-agent-with-client-ssl-certificates',
'administrator-documentation/moderne-platform/how-to-guides/agent-configuration/configure-an-agent-with-a-moderne-tenant-ssl-certificate',
'administrator-documentation/moderne-platform/how-to-guides/agent-configuration/configure-an-agent-to-connect-to-moderne-via-an-http-proxy',
'administrator-documentation/moderne-platform/how-to-guides/agent-configuration/agent-variables',
'administrator-documentation/moderne-platform/how-to-guides/agent-configuration/multi-tenant-private-recipes',