Render · Schema

keyValueConnectionInfo

A Key Value instance

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
internalConnectionString string The connection string to use from within Render
externalConnectionString string The connection string to use from outside Render
cliCommand string The CLI (redis-cli or valkey-cli) command to connect to the Key Value instance
View JSON Schema on GitHub

JSON Schema

render-keyvalueconnectioninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/keyValueConnectionInfo",
  "title": "keyValueConnectionInfo",
  "type": "object",
  "description": "A Key Value instance",
  "required": [
    "internalConnectionString",
    "externalConnectionString",
    "cliCommand"
  ],
  "properties": {
    "internalConnectionString": {
      "description": "The connection string to use from within Render",
      "type": "string"
    },
    "externalConnectionString": {
      "description": "The connection string to use from outside Render",
      "type": "string",
      "format": "password"
    },
    "cliCommand": {
      "description": "The CLI (redis-cli or valkey-cli) command to connect to the Key Value instance",
      "type": "string",
      "format": "password"
    }
  }
}