mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
33 lines
No EOL
813 B
HCL
33 lines
No EOL
813 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"
|
|
}
|
|
|
|
resource "cloudflare_record" "kittywitch_root_pages" {
|
|
name = "kittywit.ch"
|
|
proxied = false
|
|
ttl = 3600
|
|
type = "CNAME"
|
|
value = "kittywitch.pages.dev"
|
|
zone_id = "7e44e5503a0bba73d2025d0a9679205e"
|
|
} |