Stashapp/domain.tf

71 lines
1.6 KiB
Terraform
Raw Normal View History

2022-12-31 05:24:28 +00:00
terraform {
required_providers {
namecheap = {
source = "namecheap/namecheap"
version = "~> 2.1.0"
}
}
backend "http" {
2022-12-31 05:24:53 +00:00
address = "https://asciireactor.com/api/v4/projects/131/terraform/state/personal-database"
lock_address = "https://asciireactor.com/api/v4/projects/131/terraform/state/personal-database/lock"
unlock_address = "https://asciireactor.com/api/v4/projects/131/terraform/state/personal-database/lock"
2022-12-31 05:24:28 +00:00
lock_method = "POST"
unlock_method = "DELETE"
retry_wait_min = 5
}
}
provider "namecheap" {}
2022-12-31 07:48:10 +00:00
variable "saline-rproxy" {
type = string
default = "rprxy-0.saline.o4data.net."
}
variable "stashbox-vip" {
type = string
default = "stashbox.delhi.o4data.net."
}
2022-12-31 05:26:44 +00:00
resource "namecheap_domain_records" "othonotes" {
2022-12-31 05:24:28 +00:00
domain = "othonotes.com"
record {
hostname = "@"
2022-12-31 07:48:10 +00:00
address = var.saline-rproxy
2022-12-31 05:24:28 +00:00
type = "ALIAS"
ttl = 300
}
record {
hostname = "www"
address = "othonotes.com."
2022-12-31 05:24:28 +00:00
type = "CNAME"
}
}
2022-12-31 05:26:44 +00:00
resource "namecheap_domain_records" "othostash" {
2022-12-31 05:24:28 +00:00
domain = "othostash.com"
record {
hostname = "@"
2022-12-31 07:48:10 +00:00
address = var.stashbox-vip
type = "ALIAS"
ttl = 300
2022-12-31 05:24:28 +00:00
}
record {
hostname = "www"
address = "othostash.com."
2022-12-31 05:24:28 +00:00
type = "CNAME"
}
record {
hostname = "websites"
2022-12-31 07:48:10 +00:00
address = var.saline-rproxy
type = "CNAME"
}
record {
hostname = "filemanager"
2022-12-31 07:48:10 +00:00
address = var.saline-rproxy
type = "CNAME"
}
2022-12-31 05:24:28 +00:00
}