Skip to content

cid

Returns the Customer ID (CID) and Customer ID Checksum (CCID) for the Falcon tenant authenticated by the provider.

The following API scopes are required:

  • Sensor Download: READ
terraform {
required_providers {
crowdstrike = {
source = "registry.terraform.io/crowdstrike/crowdstrike"
}
}
}
provider "crowdstrike" {
cloud = "us-2"
}
data "crowdstrike_cid" "current" {}
output "ccid" {
value = data.crowdstrike_cid.current.ccid
}
output "cid" {
value = data.crowdstrike_cid.current.cid
}
  • ccid (String) Customer ID Checksum. A 32-character CID followed by a 2-character checksum suffix in the form ‘XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-YY’. Returned verbatim from the API.
  • cid (String) The 32-character Customer ID. Derived from ‘ccid’ by removing the ‘-YY’ checksum suffix and lowercasing.