Configure the Organizations service
In order for Moderne to obtain information about your organizational structure, you will need to configure the Moderne agent to point to your Organizations service. This guide will explain how to do that.
OCI Container
Executable JAR
Variables:
MODERNE_AGENT_ORGANIZATION_URL
– The URL of your GraphQL service that provides organization information.MODERNE_AGENT_ORGANIZATION_UPDATE_INTERVAL_SECONDS
– (Optional) Specifies how often to request your organization information. Defaults to600
(10 minutes).MODERNE_AGENT_ORGANIZATION_SKIPSSL
– (Optional) Specifies whether or not to skip SSL validation for HTTP connections to this Organization service instance. This must be set totrue
if you use a self-signed SSL/TLS certificate. Defaults tofalse
.
Example:
docker run \
# ... Existing variables
-e MODERNE_AGENT_ORGANIZATION_URL=http://localhost:8091 \
-e MODERNE_AGENT_ORGANIZATION_UPDATE_INTERVAL_SECONDS=600 \
# ... Additional variables
Arguments:
--moderne.agent.organization.url
– The URL of your GraphQL service that provides organization information.--moderne.agent.organization.updateIntervalSeconds
– (Optional) Specifies how often to request your organization information. Defaults to600
(10 minutes).--moderne.agent.organization.skipSsl
– (Optional) Specifies whether or not to skip SSL validation for HTTP connections to this Organization service instance. This must be set totrue
if you use a self-signed SSL/TLS certificate. Defaults tofalse
.
Example:
java -jar moderne-agent-{version}.jar \
# ... Existing arguments
--moderne.agent.organization.url=http://localhost:8091 \
--moderne.agent.organization.updateIntervalSeconds=600 \
# ... Additional arguments