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.
API Scopes
Section titled “API Scopes”The following API scopes are required:
- Flight Control: READ
Example Usage
Section titled “Example Usage”terraform { required_providers { crowdstrike = { source = "registry.terraform.io/crowdstrike/crowdstrike" } }}
provider "crowdstrike" { cloud = "us-2"}
# Look up a CID group by namedata "crowdstrike_cid_group" "production" { name = "Production"}
# Look up a CID group by IDdata "crowdstrike_cid_group" "by_id" { id = "dbe9c1fabd024fafaf44adf4df5f0f0f"}Schema
Section titled “Schema”Optional
Section titled “Optional”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.
Read-Only
Section titled “Read-Only”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.