{ "format_version": 2, "default_profile": "devnet", "profiles": [ { "profile_id": "devnet", "network": "devnet", "backend": "postgres", "postgres": { "connection_uri": "${KSP_SECRET_STORE_DEVNET_POSTGRES_URI:-postgresql://localhost/ksp_devnet}", "pool": { "max_connections": 8, "connect_timeout_ms": 10000, "wait_timeout_ms": 5000, "create_timeout_ms": 10000, "recycle_timeout_ms": 5000 }, "tls": { "mode": "disabled" }, "bootstrap": { "schema_autocreate": true, "schema_autoupdate": true, "migration_timeout_ms": 30000, "migration_lock_timeout_ms": 10000 }, "shutdown_timeout_ms": 5000 } }, { "profile_id": "mainnet", "network": "mainnet", "backend": "postgres", "postgres": { "connection_uri": "${KSP_SECRET_STORE_MAINNET_POSTGRES_URI:-postgresql://localhost/ksp_mainnet}", "pool": { "max_connections": 8, "connect_timeout_ms": 10000, "wait_timeout_ms": 5000, "create_timeout_ms": 10000, "recycle_timeout_ms": 5000 }, "tls": { "mode": "disabled" }, "bootstrap": { "schema_autocreate": true, "schema_autoupdate": true, "migration_timeout_ms": 30000, "migration_lock_timeout_ms": 10000 }, "shutdown_timeout_ms": 5000 } }, { "profile_id": "testnet", "network": "testnet", "backend": "postgres", "postgres": { "connection_uri": "${KSP_SECRET_STORE_TESTNET_POSTGRES_URI:-postgresql://localhost/ksp_testnet}", "pool": { "max_connections": 8, "connect_timeout_ms": 10000, "wait_timeout_ms": 5000, "create_timeout_ms": 10000, "recycle_timeout_ms": 5000 }, "tls": { "mode": "disabled" }, "bootstrap": { "schema_autocreate": true, "schema_autoupdate": true, "migration_timeout_ms": 30000, "migration_lock_timeout_ms": 10000 }, "shutdown_timeout_ms": 5000 } } ] }