|
| 1 | +{ |
| 2 | + "name": "Redis big segment store", |
| 3 | + "version": "1.0.0", |
| 4 | + "overview": "Integrate with a persistent store for segments with over 15k targets or synced from external tools.", |
| 5 | + "description": "Integrate with a persistent store for segments with over 15k targets or synced from external tools. The Redis big segment store syncs these LaunchDarkly segments with your Redis DB.", |
| 6 | + "author": "LaunchDarkly", |
| 7 | + "supportEmail": "[email protected]", |
| 8 | + "links": { |
| 9 | + "site": "https://redis.io/", |
| 10 | + "launchdarklyDocs": "https://docs.launchdarkly.com/integrations/redis", |
| 11 | + "privacyPolicy": "https://launchdarkly.com/policies/privacy/" |
| 12 | + }, |
| 13 | + "categories": ["big-segment-store", "data", "synced-segments"], |
| 14 | + "icons": { |
| 15 | + "square": "assets/images/square.svg", |
| 16 | + "horizontal": "assets/images/horizontal.svg" |
| 17 | + }, |
| 18 | + "formVariables": [ |
| 19 | + { |
| 20 | + "key": "host", |
| 21 | + "name": "Host", |
| 22 | + "description": "Your Redis host.", |
| 23 | + "type": "string" |
| 24 | + }, |
| 25 | + { |
| 26 | + "key": "port", |
| 27 | + "name": "Port", |
| 28 | + "description": "Your Redis port. Uses the default port of 6379 if not specified.", |
| 29 | + "type": "string", |
| 30 | + "placeholder": "6379", |
| 31 | + "defaultValue": "6379", |
| 32 | + "isOptional": true |
| 33 | + }, |
| 34 | + { |
| 35 | + "key": "username", |
| 36 | + "name": "Username", |
| 37 | + "description": "Your Redis username. Leave this field empty if your Redis DB does not have a username configured.", |
| 38 | + "type": "string", |
| 39 | + "placeholder": "default", |
| 40 | + "defaultValue": "", |
| 41 | + "isOptional": true |
| 42 | + }, |
| 43 | + { |
| 44 | + "key": "password", |
| 45 | + "name": "Password", |
| 46 | + "description": "Your Redis password.", |
| 47 | + "type": "string", |
| 48 | + "isSecret": true, |
| 49 | + "isOptional": true, |
| 50 | + "defaultValue": "" |
| 51 | + }, |
| 52 | + { |
| 53 | + "key": "tlsEnabled", |
| 54 | + "name": "Connect with TLS", |
| 55 | + "description": "Check this box if your Redis DB has TLS (SSL) enabled.", |
| 56 | + "type": "boolean", |
| 57 | + "isOptional": true, |
| 58 | + "defaultValue": false |
| 59 | + } |
| 60 | + ], |
| 61 | + "capabilities": { |
| 62 | + "bigSegmentStore": { |
| 63 | + "dbStyle": "redis" |
| 64 | + } |
| 65 | + } |
| 66 | +} |
0 commit comments