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
542 B
HCL
17 lines
542 B
HCL
# CNAME record pointing quotes.elijah.run to Cloudflare Pages.
|
|
resource "cloudflare_record" "ui" {
|
|
zone_id = var.cloudflare_zone_id
|
|
name = "quotes"
|
|
type = "CNAME"
|
|
content = cloudflare_pages_project.ui.subdomain
|
|
proxied = true
|
|
}
|
|
|
|
# Bind the custom domain quotes.elijah.run to the Pages project.
|
|
# Cloudflare provisions an SSL certificate automatically.
|
|
resource "cloudflare_pages_domain" "ui" {
|
|
account_id = var.cloudflare_account_id
|
|
project_name = cloudflare_pages_project.ui.name
|
|
domain = "quotes.elijah.run"
|
|
}
|