Skip to content

Security All Agents

The security configuration is used to define secure endpoint paths and authentication methods for FTSnext agents.

Configuration Example

yaml
security:
  endpoints:
  - path: /api/v2/**
    role: client
  auth:
    basic: [ ... ]
    clientCert: [ ... ]

Fields

endpoints (list)

Defines the API paths requiring security and their associated roles.

  • path

    • Description: The endpoint path to secure, using glob patterns
    • Type: String
    • Example: /api/v2/**
  • role (string)

    • Description: The role required to access the path
    • Type: String
    • Example: client

auth

Contains the authentication mechanisms for securing endpoints.