You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.8 KiB
Markdown

+++
title = "[TRIAGE] Correct cloudflare_workers_script resource name in current Cloudflare provider version"
priority = 7
status = "done"
ticket_type = "task"
dependencies = []
+++
<context>
This is a triage decision ticket. It must be resolved before dependent implementation tickets can proceed.
</context>
<question>
Correct Cloudflare Workers script resource name: the Cloudflare OpenTofu provider has changed resource names across versions. What is the correct resource name in the currently pinned provider version?
</question>
<options>
1. **cloudflare_workers_script** — older resource name, may be deprecated.
2. **cloudflare_worker_script** — alternative naming (singular "worker").
3. **Check provider changelog** — run `tofu providers schema` after `tofu init` to see available resources.
</options>
<decision>
**`cloudflare_workers_script`** (Option 1 — plural "workers").
Confirmed directly from the Cloudflare provider v4 GitHub source (`docs/resources/workers_script.md`). The resource is documented as `cloudflare_workers_script` with a `d1_database_binding` block. The singular form `cloudflare_worker_script` does not exist in v4.
Also confirmed alongside triage 07cafb: the `d1_database_binding` block has required fields `name` (binding variable name) and `database_id` (the D1 ID, referenced as `cloudflare_d1_database.db.id`).
Ticket a23489 updated with this resource name.
</decision>
<resolution>
1. Research the options above and choose the best approach for this project.
2. Run `tofu providers schema | jq` to find the correct resource name. Update ticket a23489.
3. Mark this ticket done with a note on the chosen approach in the body or a comment.
</resolution>
<commit>
`chore(quotesdb): resolve triage — cloudflare_workers_script-confirmed-plural-provider-v4`
</commit>