cid
Returns the Customer ID (CID) and Customer ID Checksum (CCID) for the Falcon tenant authenticated by the provider.
API Scopes
Section titled “API Scopes”The following API scopes are required:
- Sensor Download: READ
Example Usage
Section titled “Example Usage”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}Schema
Section titled “Schema”Read-Only
Section titled “Read-Only”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.