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.
17 lines
489 B
HCL
17 lines
489 B
HCL
terraform {
|
|
# Local state — terraform.tfstate is gitignored.
|
|
# No remote backend needed for this project.
|
|
required_providers {
|
|
# Cloudflare provider for Workers, D1, Pages, DNS, and routing.
|
|
cloudflare = {
|
|
source = "registry.terraform.io/cloudflare/cloudflare"
|
|
version = "~> 4"
|
|
}
|
|
# null provider for wrangler-based worker deployment via local-exec.
|
|
null = {
|
|
source = "registry.terraform.io/hashicorp/null"
|
|
version = "~> 3"
|
|
}
|
|
}
|
|
}
|