Configure the agent with 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.

Variables:

  • MODERNE_AGENT_ORGANIZATION_URLThe 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 to 600 (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 to true if you use a self-signed SSL/TLS certificate. Defaults to false.

Example:

docker run \
# ... Existing variables
-e MODERNE_AGENT_ORGANIZATION_URL=http://localhost:8091 \
-e MODERNE_AGENT_ORGANIZATION_UPDATE_INTERVAL_SECONDS=600 \
# ... Additional variables

Last updated