Has anyone noticed jump_start not working when adding a domain via Terraform?
I'm pretty new to Terraform; this works but jump_start is ignored
resource "cloudflare_zone" "setup_zones" {
for_each = { for domain in local.flattened_domains : domain => domain }
zone = each.key
account_id = var.account_id
jump_start = true
}
1 Reply