Skip to content

mixpanel_theme (Resource)

Manages a Mixpanel theme.

Example Usage

resource "mixpanel_theme" "brand" {
  project_id = 1234567

  name = "Brand Theme"
  type = "dashboard"

  global_access_type = "viewer"
}

Schema

Required

  • name (String)
  • type (String)

Optional

  • global_access_type (String) One of: off, viewer, editor.
  • project_id (Number)
  • theme_id (Number)

Import

Themes can be imported using the composite PROJECT_ID:ID format:

import {
  to = mixpanel_theme.brand
  id = "1234567:890"
}
terraform import mixpanel_theme.brand 1234567:890