26 lines
625 B
YAML
Raw Permalink Normal View History

2025-10-07 11:12:02 +01:00
# Cosmian KMS Configuration
# Example configuration for Cosmian KMS server
# KMS server URL
server_url: "https://your-kms-server.example.com/api"
# Authentication method: certificate, token, or basic
auth_method: "certificate"
# Certificate-based authentication (recommended)
client_cert_path: "/path/to/client.crt"
client_key_path: "/path/to/client.key"
ca_cert_path: "/path/to/ca.crt"
# Token-based authentication
# api_token: "your-api-token-here"
# Basic authentication
# username: "your-username"
# password: "your-password"
# Request timeout in seconds
timeout: 30
# SSL certificate verification
verify_ssl: true