Skip to content

mixpanel_spark_settings (Resource)

Manages settings for Spark, Mixpanel's AI assistant feature that provides intelligent insights and automated analysis.

Example Usage

# Organization-scoped settings. Requires an organization-admin service account.
resource "mixpanel_spark_settings" "org" {
  organization_id = 7654321
  settings        = jsonencode({})
}

Schema

Optional

  • organization_id (Number)
  • settings (String)

Read-Only

  • id (String) The ID of this resource.

Import

Import the singleton Spark settings for an organization by the organization id.

import {
  to = mixpanel_spark_settings.example
  id = "7654321"
}