This repository has been archived on 2026-08-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
infra/dns/ovh_opytex_records.tf

304 lines
6.5 KiB
HCL

resource "ovh_domain_zone_record" "git_a" {
zone = "opytex.org"
subdomain = "git"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "root_a" {
zone = "opytex.org"
subdomain = ""
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "raw_a" {
zone = "opytex.org"
subdomain = "raw"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "www_cname" {
zone = "opytex.org"
subdomain = "www"
fieldtype = "CNAME"
ttl = 3600
target = "opytex.org."
}
resource "ovh_domain_zone_record" "ftp_cname" {
zone = "opytex.org"
subdomain = "ftp"
fieldtype = "CNAME"
ttl = 3600
target = "opytex.org."
}
resource "ovh_domain_zone_record" "admin_a" {
zone = "opytex.org"
subdomain = "admin"
fieldtype = "A"
ttl = 3600
target = "91.121.90.228"
}
resource "ovh_domain_zone_record" "storage_a" {
zone = "opytex.org"
subdomain = "storage"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "minio_a" {
zone = "opytex.org"
subdomain = "minio"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "chioggia_a" {
zone = "opytex.org"
subdomain = "chioggia"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "chioggia_aaaa" {
zone = "opytex.org"
subdomain = "chioggia"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "sso_a" {
zone = "opytex.org"
subdomain = "sso"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "rss_a" {
zone = "opytex.org"
subdomain = "rss"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "rss_aaaa" {
zone = "opytex.org"
subdomain = "rss"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "bag_a" {
zone = "opytex.org"
subdomain = "bag"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "bag_aaaa" {
zone = "opytex.org"
subdomain = "bag"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "liens_a" {
zone = "opytex.org"
subdomain = "liens"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "liens_aaaa" {
zone = "opytex.org"
subdomain = "liens"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "storage_aaaa" {
zone = "opytex.org"
subdomain = "storage"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "minio_aaaa" {
zone = "opytex.org"
subdomain = "minio"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "git_aaaa" {
zone = "opytex.org"
subdomain = "git"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "paperless_a" {
zone = "opytex.org"
subdomain = "paperless"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "paperless_aaaa" {
zone = "opytex.org"
subdomain = "paperless"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "grafana_a" {
zone = "opytex.org"
subdomain = "grafana"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "grafana_aaaa" {
zone = "opytex.org"
subdomain = "grafana"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "photos_a" {
zone = "opytex.org"
subdomain = "photos"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "photos_aaaa" {
zone = "opytex.org"
subdomain = "photos"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "ntfy_a" {
zone = "opytex.org"
subdomain = "ntfy"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "ntfy_aaaa" {
zone = "opytex.org"
subdomain = "ntfy"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "livekit_a" {
zone = "opytex.org"
subdomain = "livekit"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "livekit_aaaa" {
zone = "opytex.org"
subdomain = "livekit"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "vault_a" {
zone = "opytex.org"
subdomain = "vault"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "vault_aaaa" {
zone = "opytex.org"
subdomain = "vault"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "plesna_a" {
zone = "opytex.org"
subdomain = "plesna"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "plesna_aaaa" {
zone = "opytex.org"
subdomain = "plesna"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "maintenant_a" {
zone = "opytex.org"
subdomain = "maintenant"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "maintenant_aaaa" {
zone = "opytex.org"
subdomain = "maintenant"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}
resource "ovh_domain_zone_record" "forge_a" {
zone = "opytex.org"
subdomain = "forge"
fieldtype = "A"
ttl = 3600
target = "188.165.240.182"
}
resource "ovh_domain_zone_record" "forge_aaaa" {
zone = "opytex.org"
subdomain = "forge"
fieldtype = "AAAA"
ttl = 3600
target = "2001:41d0:2:bbb6:0:0:0:1"
}