CockroachDB · Schema

CMEKClusterSpecification

Specification defining the customer-managed encryption key configuration for a CockroachDB cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
region_specs array Per-region CMEK key specifications.
View JSON Schema on GitHub

JSON Schema

cockroachdb-cmekclusterspecification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CMEKClusterSpecification",
  "title": "CMEKClusterSpecification",
  "type": "object",
  "description": "Specification defining the customer-managed encryption key configuration for a CockroachDB cluster.",
  "required": [
    "region_specs"
  ],
  "properties": {
    "region_specs": {
      "type": "array",
      "description": "Per-region CMEK key specifications.",
      "items": {
        "type": "object",
        "properties": {
          "region": {
            "type": "string",
            "description": "Cloud region the key applies to."
          },
          "key": {
            "type": "object",
            "description": "Key specification including type and URI."
          }
        }
      }
    }
  }
}