Skip to content

mixpanel_heat_map_collection (Resource)

Manages a Mixpanel Heat Map Collection (mixpanel_heat_map_collection) — a grouping of related heat maps for comparative analysis across pages or variants. Collections organize multiple heat maps (for example, landing page variants or a multi-step funnel) into one container, making it easier to compare engagement patterns side-by-side.

Example Usage

resource "mixpanel_heat_map_collection" "checkout_flow" {
  project_id  = 1234567
  name        = "Checkout Flow Heat Maps"
  description = "Heat maps for each step of the checkout process"
}

Schema

Required

  • name (String)

Optional

  • dashboard_id (Number)
  • description (String)
  • heat_map_collection_id (String)
  • heat_maps (String)
  • project_id (Number)

Read-Only

  • allow_staff_override (Boolean)
  • can_pin (Boolean)
  • can_share (Boolean)
  • can_update_basic (Boolean)
  • can_view (Boolean)
  • id (String) The ID of this resource.
  • is_shared_with_project (Boolean)
  • is_superadmin (Boolean)
  • last_modified_by_email (String)
  • last_modified_by_id (Number)
  • last_modified_by_name (String)

Import

Import using the composite ID PROJECT_ID:ID:

import {
  to = mixpanel_heat_map_collection.example
  id = "1234567:abc123def456"
}