🔐 Secrets Management
Manage encrypted secrets for workflow: Internet Search Workflow
🏦 Vault Status
Loading vault status...
📊 Workflow Secrets
Loading secrets...
🔒 Security
✅ Encrypted Storage
✅ Environment Isolation
✅ Automatic Cleanup
🗝️ Workflow Secrets
Loading secrets...
📖 Usage Instructions
How to use secrets in your workflow tasks:
# In your workflow task definition:
{
"id": "my_task",
"name": "Task with Secrets",
"type": "script",
"script": "#!/usr/bin/env npx\necho \"Redis URL: $REDIS_URL\"",
"secrets_config": {
"REDIS_URL": "redis_connection_url",
"API_KEY": "my_api_key"
}
}
🔒 Security Note: Secrets are automatically injected as environment variables by the engine and cleaned up after task execution. They never appear in logs or task outputs.