Render · Schema

redisConnectionInfo

A Redis 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
redisCLICommand string The Redis CLI command to connect to the Redis instance
View JSON Schema on GitHub

JSON Schema

render-redisconnectioninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/redisConnectionInfo",
  "title": "redisConnectionInfo",
  "type": "object",
  "description": "A Redis instance",
  "required": [
    "internalConnectionString",
    "externalConnectionString",
    "redisCLICommand"
  ],
  "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"
    },
    "redisCLICommand": {
      "description": "The Redis CLI command to connect to the Redis instance",
      "type": "string",
      "format": "password"
    }
  }
}