Updates to dns terraform.

This commit is contained in:
Otho 2022-12-31 02:48:10 -05:00
parent 5d3a43f8d1
commit 6e47c50654
Signed by: Otho
GPG Key ID: 16C720CD3BBE21D9

View File

@ -18,11 +18,21 @@ terraform {
provider "namecheap" {}
variable "saline-rproxy" {
type = string
default = "rprxy-0.saline.o4data.net."
}
variable "stashbox-vip" {
type = string
default = "stashbox.delhi.o4data.net."
}
resource "namecheap_domain_records" "othonotes" {
domain = "othonotes.com"
record {
hostname = "@"
address = "rprxy-0.saline.o4data.net"
address = var.saline-rproxy
type = "ALIAS"
ttl = 300
}
@ -38,7 +48,7 @@ resource "namecheap_domain_records" "othostash" {
record {
hostname = "@"
address = "stashbox.delhi.o4data.net"
address = var.stashbox-vip
type = "ALIAS"
ttl = 300
}
@ -49,12 +59,12 @@ resource "namecheap_domain_records" "othostash" {
}
record {
hostname = "websites"
address = "rprxy-0.saline.o4data.net"
address = var.saline-rproxy
type = "CNAME"
}
record {
hostname = "filemanager"
address = "rprxy-0.saline.o4data.net"
address = var.saline-rproxy
type = "CNAME"
}
}