Provides a Cloudflare Teams List resource. Teams lists are referenced when creating secure web gateway policies or device posture rules.
resource "cloudflare_teams_list" "example" {
account_id = "f037e56e89293a057740de681ac9abbe"
name = "Corporate devices"
type = "SERIAL"
description = "Serial numbers for all corporate devices."
items = ["8GE8721REF", "5RE8543EGG", "1YE2880LNP"]
}
account_id
(String) The account identifier to target for the resource.name
(String) Name of the teams list.type
(String) The teams list type. Available values: IP
, SERIAL
, URL
, DOMAIN
, EMAIL
.description
(String) The description of the teams list.items
(Set of String) The items of the teams list.id
(String) The ID of this resource.Import is supported using the following syntax:
$ terraform import cloudflare_teams_list.example <account_id>/<teams_list_id>