Skip to content

mixpanel_business_context (Resource)

Manages business context for a Mixpanel project — custom guidance that helps AI features understand your business domain, product terminology, and analytical goals.

Example Usage

resource "mixpanel_business_context" "example" {
  project_id = 1234567
  content    = <<-EOT
    Our e-commerce platform serves B2C customers in retail.
    Key metrics: conversion rate, average order value, cart abandonment.
    Product categories: electronics, apparel, home goods.
  EOT
}

Schema

Optional

  • content (String) The business context content that guides AI analysis. Provide domain-specific information, product terminology, key metrics, and business goals.
  • project_id (Number) The Mixpanel project ID. If omitted, uses the provider's default project.

Read-Only

  • id (String) The ID of this resource.

Import

Import the singleton business context for a project by the project id.

import {
  to = mixpanel_business_context.example
  id = "1234567"
}