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`)
|
rule: Host(`registry.git.theorangeone.net`)
|
||||||
service: service-gitlab
|
service: service-gitlab
|
||||||
router-gitlab-pages:
|
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
|
service: service-gitlab-pages
|
||||||
router-slides:
|
router-slides:
|
||||||
rule: Host(`slides.jakehoward.tech`)
|
rule: Host(`slides.jakehoward.tech`)
|
||||||
|
|
|
@ -191,11 +191,19 @@ resource "cloudflare_record" "theorangeonenet_plausible_bare" {
|
||||||
resource "cloudflare_record" "theorangeonenet_notes" {
|
resource "cloudflare_record" "theorangeonenet_notes" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "notes"
|
name = "notes"
|
||||||
value = cloudflare_record.theorangeonenet_gitlab_pages.hostname
|
value = "RealOrangeOne.gitlab.io"
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
ttl = 1
|
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" {
|
resource "cloudflare_record" "theorangeonenet_privatebin" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "bin"
|
name = "bin"
|
||||||
|
|
Loading…
Reference in a new issue