Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 79c659e

Browse files
committedJul 12, 2024··
feat: landing record
1 parent 09096a5 commit 79c659e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
resource "cloudflare_record" "docs_record" {
2+
zone_id = data.cloudflare_zone.main.id
3+
type = "CNAME"
4+
name = "docs"
5+
value = "presentium.github.io"
6+
proxied = false
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
resource "cloudflare_record" "main_landing_record" {
2+
zone_id = data.cloudflare_zone.main.id
3+
type = "CNAME"
4+
name = "@"
5+
value = "presentium.github.io"
6+
proxied = false
7+
}

0 commit comments

Comments
 (0)
This repository has been archived.