generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 19
Labels
enhancementNew feature or requestNew feature or request
Description
Description
Add a data source to query existing Sensor Update Policies from CrowdStrike Falcon. This would allow users to reference existing policies in their Terraform configurations.
Example Usage
data "crowdstrike_sensor_update_policies" "example" {
# Query all sensor update policies
}
data "crowdstrike_sensor_update_policy" "specific" {
id = "policy-id-here"
}
# Reference the policy in other resources
resource "crowdstrike_host_group" "example" {
name = "example-group"
# Use the policy data
}API Scopes Required
- Sensor Update Policies:
READ
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request