A Kubernetes operator that bridges Hardware Security Module (HSM) data storage with Kubernetes Secrets, providing true secret portability th
1{
2 "label": "myapp-database",
3 "id": 100,
4 "format": "json",
5 "description": "Database credentials for myapp service",
6 "tags": {
7 "environment": "production",
8 "app": "myapp",
9 "type": "database",
10 "owner": "platform-team"
11 },
12 "data": {
13 "database_url": "postgresql://myuser:mypass@db.example.com:5432/myapp",
14 "username": "myuser",
15 "password": "mypass",
16 "host": "db.example.com",
17 "port": "5432",
18 "database_name": "myapp",
19 "ssl_mode": "require",
20 "connection_pool_size": "10",
21 "timeout": "30s"
22 }
23}