Skip to content

cid_group

Manages CID groups in CrowdStrike Falcon Flight Control. CID groups allow MSPs to organize and manage child CIDs for multi-tenant environments.

The following API scopes are required:

  • Flight Control: READ
  • Flight Control: WRITE
terraform {
required_providers {
crowdstrike = {
source = "registry.terraform.io/crowdstrike/crowdstrike"
}
}
}
provider "crowdstrike" {
cloud = "us-2"
}
resource "crowdstrike_cid_group" "example" {
name = "Production Tenants"
description = "Group for all production customer CIDs"
}
  • name (String) The name of the CID group.
  • cids (Set of String) Set of CID identifiers that are members of this group.
  • description (String) The description of the CID group.
  • cid (String) The CID associated with this group.
  • id (String) The ID of the CID group.

Import is supported using the following syntax:

#!/bin/bash
# CID group can be imported by specifying the CID group ID
terraform import crowdstrike_cid_group.example cid_group_id_here