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.
39 lines
1.4 KiB
Markdown
39 lines
1.4 KiB
Markdown
+++
|
|
title = "Set up infra/ OpenTofu project — providers.tf, terraform.tf, .gitignore for state"
|
|
priority = 8
|
|
status = "todo"
|
|
ticket_type = "task"
|
|
dependencies = ["25c413", "07feaa"]
|
|
+++
|
|
|
|
<context>
|
|
Infrastructure is managed with OpenTofu using the Cloudflare provider. Configuration lives in `infra/`. Resources include a Cloudflare Worker (API), Cloudflare D1 database (bound to the worker), and a Cloudflare Pages project (UI frontend).
|
|
</context>
|
|
|
|
<goal>
|
|
Bootstrap the OpenTofu project in `infra/`:
|
|
1. Create `infra/providers.tf` — declare the Cloudflare provider with the required version
|
|
2. Create `infra/terraform.tf` — configure the OpenTofu backend (resolve TRIAGE ticket 07feaa for state backend choice)
|
|
3. Create `infra/.gitignore` — ignore `*.tfstate`, `*.tfstate.backup`, `.terraform/`
|
|
4. Run `tofu init` to initialise the provider
|
|
</goal>
|
|
|
|
<constraints>
|
|
- Resolve TRIAGE ticket 07feaa (state backend: local file vs Terraform Cloud vs R2) before creating `terraform.tf`.
|
|
- The Cloudflare provider requires an API token — document the expected environment variable (`CLOUDFLARE_API_TOKEN`) in a comment in `providers.tf`, do not hardcode it.
|
|
- Every `resource` and `data` block must have a comment explaining its purpose (per CLAUDE.md).
|
|
</constraints>
|
|
|
|
<validation>
|
|
Run from the `infra/` directory:
|
|
|
|
```sh
|
|
tofu validate
|
|
tofu plan
|
|
```
|
|
</validation>
|
|
|
|
<commit>
|
|
`chore(quotesdb): bootstrap OpenTofu infra project with Cloudflare provider`
|
|
</commit>
|