mirror of
https://asciireactor.com/otho/stashbox
synced 2024-11-22 08:05:08 +00:00
40 lines
931 B
HCL
40 lines
931 B
HCL
terraform {
|
|
required_providers {
|
|
namecheap = {
|
|
source = "namecheap/namecheap"
|
|
version = "~> 2.1.0"
|
|
}
|
|
}
|
|
|
|
backend "http" {
|
|
address = "https://asciireactor.com/api/v4/projects/132/terraform/state/library-httpd"
|
|
lock_address = "https://asciireactor.com/api/v4/projects/132/terraform/state/library-httpd/lock"
|
|
unlock_address = "https://asciireactor.com/api/v4/projects/132/terraform/state/library-httpd/lock"
|
|
lock_method = "POST"
|
|
unlock_method = "DELETE"
|
|
retry_wait_min = 5
|
|
}
|
|
}
|
|
|
|
provider "namecheap" {}
|
|
|
|
variable "stashbox-vip" {
|
|
type = string
|
|
default = "stashbox.delhi.o4data.net."
|
|
}
|
|
|
|
resource "namecheap_domain_records" "othostash" {
|
|
domain = "othostash.com"
|
|
record {
|
|
hostname = "@"
|
|
address = var.stashbox-vip
|
|
type = "ALIAS"
|
|
ttl = 300
|
|
}
|
|
record {
|
|
hostname = "www"
|
|
address = "othostash.com."
|
|
type = "CNAME"
|
|
}
|
|
}
|