Skip to content

cloud_security_kac_policy_precedence

This resource manages the precedence for Admission Control policies.

The following API scopes are required:

  • Falcon Container Policies: READ
  • Falcon Container Policies: WRITE
terraform {
required_providers {
crowdstrike = {
source = "registry.terraform.io/crowdstrike/crowdstrike"
}
}
}
provider "crowdstrike" {
cloud = "us-2"
}
resource "crowdstrike_cloud_security_kac_policy_precedence" "example" {
ids = [
"a1j09y3yq0wnrpb5o6jlij9e4f40k6lq",
"2asia54xti93bg0jbr5hfpqqbhxbyeoa",
"xuzq8hs1uyc2s7zdar3fli0shiyl22vc",
]
}
output "cloud_security_kac_policy_precedence" {
value = crowdstrike_cloud_security_kac_policy_precedence.example
}
  • ids (List of String) The policy ids in order. The first ID specified will have the highest precedence and the last ID specified will have the lowest.
  • last_updated (String) Timestamp of the last Terraform update of the resource.