Expose pages sites

This commit is contained in:
Jake Howard
2020-09-05 20:33:57 +01:00
parent 0a1b541974
commit ea54d1be69
3 changed files with 20 additions and 0 deletions

View File

@ -172,3 +172,11 @@ resource "cloudflare_record" "theorangeonenet_gitlab_pages" {
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_gitlab_pages_wildcard" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "*.pages"
value = var.walker_ip
type = "A"
ttl = 1
}