Fastly · Schema

SecretStore

A secret store providing encrypted storage for credentials and tokens accessible from Fastly Compute services.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
id string The alphanumeric string identifying the secret store.
name string The name of the secret store.
created_at string The date and time the secret store was created.
View JSON Schema on GitHub

JSON Schema

fastly-secretstore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretStore",
  "title": "SecretStore",
  "type": "object",
  "description": "A secret store providing encrypted storage for credentials and tokens accessible from Fastly Compute services.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The alphanumeric string identifying the secret store."
    },
    "name": {
      "type": "string",
      "description": "The name of the secret store."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the secret store was created."
    }
  }
}