Compare commits

..

2 Commits

Author SHA1 Message Date
4d1d28c64b
Add pdb subdomain for grist 2023-04-11 17:49:33 -04:00
5803ea337e
Add www subdomain for enp 2023-04-05 23:04:34 -04:00

View File

@ -64,10 +64,10 @@ resource "digitalocean_record" "enp_vpn" {
ttl = 10600 ttl = 10600
} }
resource "digitalocean_record" "enp_web" { resource "digitalocean_record" "enp_www" {
domain = digitalocean_domain.enp.id domain = digitalocean_domain.enp.id
type = "CNAME" type = "CNAME"
name = "web" name = "www"
value = "en1.enp.one." value = "en1.enp.one."
ttl = 10600 ttl = 10600
} }
@ -88,6 +88,14 @@ resource "digitalocean_record" "enp_img" {
ttl = 10600 ttl = 10600
} }
resource "digitalocean_record" "enp_pdb" {
domain = digitalocean_domain.enp.id
type = "CNAME"
name = "pdb"
value = "en1.enp.one."
ttl = 10600
}
# ========================================================================== # ==========================================================================
# Standard DO configuration for all managed domains, includes # Standard DO configuration for all managed domains, includes