Skip to content

cid_group

Provides information about a single CID group in CrowdStrike Falcon Flight Control. Use this to look up a CID group by name or ID and reference its attributes in other resources.

The following API scopes are required:

  • Flight Control: READ
terraform {
required_providers {
crowdstrike = {
source = "registry.terraform.io/crowdstrike/crowdstrike"
}
}
}
provider "crowdstrike" {
cloud = "us-2"
}
# Look up a CID group by name
data "crowdstrike_cid_group" "production" {
name = "Production"
}
# Look up a CID group by ID
data "crowdstrike_cid_group" "by_id" {
id = "dbe9c1fabd024fafaf44adf4df5f0f0f"
}
  • id (String) The CID group ID. Exactly one of ‘id’ or ‘name’ must be provided.
  • name (String) The CID group name. Exactly one of ‘id’ or ‘name’ must be provided.
  • cid (String) The CID identifier associated with this group.
  • cids (Set of String) The set of CID identifiers that are members of this group.
  • description (String) The description of the CID group.
  • is_default (Boolean) Whether this is the default CID group.