Put GitLab on a real domain

This commit is contained in:
Jake Howard
2021-05-29 16:21:47 +01:00
parent 9118938fea
commit 69abafd8c8
6 changed files with 35 additions and 3 deletions

View File

@ -10,6 +10,14 @@ resource "cloudflare_record" "theorangeonenet_git" {
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_code" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "code"
value = vultr_instance.casey.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_whoami" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "whoami"