This commit is contained in:
parent
72267db739
commit
a78c4680c4
2 changed files with 10 additions and 2 deletions
|
@ -7,7 +7,7 @@ http:
|
|||
rule: Host(`registry.git.theorangeone.net`)
|
||||
service: service-gitlab
|
||||
router-gitlab-pages:
|
||||
rule: HostRegexp(`gitlab-pages.theorangeone.net`, `{subdomain:[a-z]+}.gitlab-pages.theorangeone.net`, `notes.theorangeone.net`)
|
||||
rule: HostRegexp(`gitlab-pages.theorangeone.net`, `{subdomain:[a-z]+}.gitlab-pages.theorangeone.net`)
|
||||
service: service-gitlab-pages
|
||||
router-slides:
|
||||
rule: Host(`slides.jakehoward.tech`)
|
||||
|
|
|
@ -191,11 +191,19 @@ resource "cloudflare_record" "theorangeonenet_plausible_bare" {
|
|||
resource "cloudflare_record" "theorangeonenet_notes" {
|
||||
zone_id = cloudflare_zone.theorangeonenet.id
|
||||
name = "notes"
|
||||
value = cloudflare_record.theorangeonenet_gitlab_pages.hostname
|
||||
value = "RealOrangeOne.gitlab.io"
|
||||
type = "CNAME"
|
||||
ttl = 1
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "theorangeonenet_notes_verification" {
|
||||
zone_id = cloudflare_zone.theorangeonenet.id
|
||||
name = "_gitlab-pages-verification-code.notes"
|
||||
value = "gitlab-pages-verification-code=bb2b6cf5a1f59094353c2eb11a4d3fa8"
|
||||
type = "TXT"
|
||||
ttl = 1
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "theorangeonenet_privatebin" {
|
||||
zone_id = cloudflare_zone.theorangeonenet.id
|
||||
name = "bin"
|
||||
|
|
Loading…
Reference in a new issue