Skip to content

mixpanel_workspace (Data Source)

Reads a Mixpanel workspace — a collaborative environment within a project that controls data access and member permissions. Workspaces enable teams to partition analytical work and control which data each group can query.

Example Usage

data "mixpanel_workspace" "marketing" {
  project_id   = 1234567
  workspace_id = 7654321
}

Only workspace_id is an input; the remaining attributes are populated from the fetched object.

See the mixpanel_workspace resource to create and manage workspaces.

Schema

Required

  • project_id (Number)
  • workspace_id (Number)

Optional

  • data_filters (String)

Read-Only

  • created_iso (String)
  • creator_id (Number)
  • creator_name (String)
  • description (String)
  • has_all_org_members (Boolean)
  • id (Number) The ID of this resource.
  • is_default (Boolean)
  • is_global (Boolean)
  • is_restricted (Boolean)
  • is_visible (Boolean)
  • member_list (Attributes List)
  • membership_approval_required (Boolean)
  • name (String)
  • onboarding_dashboard_id (Number)
  • requesting_user_orgs (List of String)
  • requesting_user_teams (List of String)
  • team_list (Attributes List)
  • unified_member_list (Attributes List)