events.iterate.com

Event type

events.iterate.com/sandbox/configured

The sandbox's env-var map changed (setEnvVars, or `env` at create). `env` is the map set in this change (key → value; null = key unset); values are conventionally `getSecret(path)` placeholders substituted only at egress, or non-secret literals. NEVER put raw secret material in a value — it lands on this durable stream.

Payload schema

envRecord<string, string | null>

The entries set in THIS change (key → getSecret placeholder / literal; null unsets the key) — not the full resulting map.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "env": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {
        "anyOf": [
          {
            "type": "string"
          },
          {
            "type": "null"
          }
        ]
      },
      "description": "The entries set in THIS change (key → getSecret placeholder / literal; null unsets the key) — not the full resulting map."
    }
  },
  "required": [
    "env"
  ]
}