mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
24 lines
No EOL
592 B
HCL
24 lines
No EOL
592 B
HCL
resource "cloudflare_pages_project" "kittywitch" {
|
|
account_id = "0467b993b65d8fd4a53fe24ed2fbb2a1"
|
|
name = "kittywitch"
|
|
production_branch = "main"
|
|
|
|
source {
|
|
type = "github"
|
|
config {
|
|
owner = "kittywitch"
|
|
repo_name = "kittywit.ch"
|
|
production_branch = "main"
|
|
deployments_enabled = true
|
|
pr_comments_enabled = false
|
|
production_deployment_enabled = true
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "cloudflare_pages_domain" "kittywitch_root" {
|
|
account_id = "0467b993b65d8fd4a53fe24ed2fbb2a1"
|
|
project_name = "kittywitch"
|
|
domain = "kittywit.ch"
|
|
} |