cid_group
Manages CID groups in CrowdStrike Falcon Flight Control. CID groups allow MSPs to organize and manage child CIDs for multi-tenant environments.
API Scopes
Section titled “API Scopes”The following API scopes are required:
- Flight Control: READ
- Flight Control: WRITE
Example Usage
Section titled “Example Usage”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"
}Schema
Section titled “Schema”Required
Section titled “Required”name(String) The name of the CID group.
Optional
Section titled “Optional”cids(Set of String) Set of CID identifiers that are members of this group.description(String) The description of the CID group.
Read-Only
Section titled “Read-Only”cid(String) The CID associated with this group.id(String) The ID of the CID group.
Import
Section titled “Import”Import is supported using the following syntax:
#!/bin/bash
# CID group can be imported by specifying the CID group IDterraform import crowdstrike_cid_group.example cid_group_id_here