Enable GitLab registry

This commit is contained in:
Jake Howard
2022-02-25 21:48:13 +00:00
parent 47b5a2fbd3
commit 293aed0fd3
5 changed files with 45 additions and 11 deletions

View File

@ -10,6 +10,14 @@ resource "cloudflare_record" "theorangeonenet_git" {
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_git_registry" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "registry.git"
value = cloudflare_record.theorangeonenet_git.hostname
type = "CNAME"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_whoami" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "whoami"