35 lines
651 B
YAML
35 lines
651 B
YAML
|
|
# Default Context Template (Legacy - kept for compatibility)
|
||
|
|
# NOTE: For per-workspace contexts, use ws_{name}.yaml instead
|
||
|
|
# Location: ~/Library/Application Support/provisioning/
|
||
|
|
|
||
|
|
# Root path for installation
|
||
|
|
provisioning:
|
||
|
|
path: /usr/local/provisioning
|
||
|
|
|
||
|
|
# Default workspace (legacy)
|
||
|
|
workspace:
|
||
|
|
name: ""
|
||
|
|
path: "{{env.HOME}}/workspaces"
|
||
|
|
|
||
|
|
# Secret management
|
||
|
|
secrets:
|
||
|
|
provider: "sops" # sops or kms
|
||
|
|
sops_mode: "age"
|
||
|
|
|
||
|
|
# KMS configuration
|
||
|
|
kms:
|
||
|
|
mode: "local" # local, remote, hybrid
|
||
|
|
endpoint: ""
|
||
|
|
|
||
|
|
# AI configuration
|
||
|
|
ai:
|
||
|
|
enabled: false
|
||
|
|
provider: "openai"
|
||
|
|
|
||
|
|
# Debug settings
|
||
|
|
debug:
|
||
|
|
enabled: false
|
||
|
|
metadata: false
|
||
|
|
log_level: "info"
|
||
|
|
|