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