# TBD
resource "cloudflare_access_rule" "whitelisted_ip" { count = "${length(var.whitelist_ips)}" notes = "Whitelist IPs from Terraform" mode = "whitelist" configuration { target = "ip_range" value = "${element(var.whitelist_ips, count.index)}" } }