Skip to content

mixpanel_org_request_access_settings (Resource)

Manages organization-level request access settings — controls whether and how users can request access to projects within the organization. The settings payload is passed through to the Mixpanel organization access request configuration. Configure these settings in the Mixpanel webapp under Organization Settings > Access Requests.

Example Usage

# Organization request access settings. Requires an organization-admin service account.
resource "mixpanel_org_request_access_settings" "org" {
  organization_id = 7654321
  settings        = jsonencode({
    # Settings structure is determined by the Mixpanel API
    # Consult the Mixpanel organization settings UI for available options
  })
}

Schema

Optional

  • organization_id (Number)
  • settings (String)

Read-Only

  • id (String) The ID of this resource.

Import

This is a singleton resource scoped by organization. Import using the organization ID:

import {
  to = mixpanel_org_request_access_settings.org
  id = "7654321"
}