Allow website to handle traffic to second domain

This commit is contained in:
Jake Howard
2022-11-16 14:56:17 +00:00
parent 330e7e9305
commit c91b1ba871
2 changed files with 9 additions and 1 deletions

View File

@ -202,3 +202,11 @@ resource "cloudflare_record" "jakehowardtech_matrix_admin" {
type = "A"
ttl = 1
}
resource "cloudflare_record" "jakehowardtech_apex" {
zone_id = cloudflare_zone.jakehowardtech.id
name = "@"
value = vultr_instance.walker.main_ip
type = "A"
ttl = 1
}