-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfpages-dotfiles-utf9k-net.tf
35 lines (34 loc) · 1.04 KB
/
cfpages-dotfiles-utf9k-net.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
resource "cloudflare_pages_project" "dotfiles-utf9k-net" {
account_id = var.cloudflare_account_id
name = "9kdotfiles"
production_branch = "main"
build_config {
destination_dir = "site"
root_dir = "/"
}
deployment_configs {
preview {
compatibility_date = "2022-12-25"
compatibility_flags = []
d1_databases = {}
durable_object_namespaces = {}
environment_variables = {}
kv_namespaces = {}
r2_buckets = {}
}
production {
compatibility_date = "2022-12-25"
compatibility_flags = []
d1_databases = {}
durable_object_namespaces = {}
environment_variables = {}
kv_namespaces = {}
r2_buckets = {}
}
}
}
resource "cloudflare_pages_domain" "dotfiles-utf9k-net" {
account_id = var.cloudflare_account_id
project_name = cloudflare_pages_project.dotfiles-utf9k-net.name
domain = "dotfiles.utf9k.net"
}