- Remove KCL ecosystem (~220 files deleted) - Migrate all infrastructure to Nickel schema system - Consolidate documentation: legacy docs → provisioning/docs/src/ - Add CI/CD workflows (.github/) and Rust build config (.cargo/) - Update core system for Nickel schema parsing - Update README.md and CHANGES.md for v5.0.0 release - Fix pre-commit hooks: end-of-file, trailing-whitespace - Breaking changes: KCL workspaces require migration - Migration bridge available in docs/src/development/
27 lines
626 B
YAML
27 lines
626 B
YAML
# 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
|