cloudflare/everun.club.tf
Kazuhiro MUSASHI 308567985d
All checks were successful
continuous-integration/drone/push Build is passing
Add HTTPS record for www.everun.club.
2025-03-12 21:53:30 +09:00

128 lines
3.3 KiB
HCL

resource "cloudflare_dns_record" "A_everun_club" {
content = "3.112.51.62"
name = "everun.club"
proxied = false
ttl = 1
type = "A"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "A_staging_everun_club" {
content = "3.112.51.62"
name = "staging.everun.club"
proxied = true
ttl = 1
type = "A"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "A_webhook_everun_club" {
content = "3.112.51.62"
name = "webhook.everun.club"
proxied = true
ttl = 1
type = "A"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "A_www_everun_club" {
content = "3.112.51.62"
name = "www.everun.club"
proxied = true
ttl = 1
type = "A"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "HTTPS_www_everun_club" {
name = "www.everun.club"
proxied = false
ttl = 1
type = "HTTPS"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
data = {
priority = 1
target = "3.112.51.62."
value = "alpn=\"h3,h2\""
}
settings = {}
}
resource "cloudflare_dns_record" "MX_everun_club_03" {
content = "route3.mx.cloudflare.net"
name = "everun.club"
priority = 5
proxied = false
ttl = 1
type = "MX"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "MX_everun_club_02" {
content = "route2.mx.cloudflare.net"
name = "everun.club"
priority = 50
proxied = false
ttl = 1
type = "MX"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "MX_everun_club_01" {
content = "route1.mx.cloudflare.net"
name = "everun.club"
priority = 41
proxied = false
ttl = 1
type = "MX"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "NS_mail_everun_club_02" {
content = "ns2.dns.ne.jp"
name = "mail.everun.club"
proxied = false
ttl = 1
type = "NS"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "NS_mail_everun_club_01" {
content = "ns1.dns.ne.jp"
name = "mail.everun.club"
proxied = false
ttl = 1
type = "NS"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "TXT_DKIM_everun_club" {
content = "\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiweykoi+o48IOGuP7GR3X0MOExCUDY/BCRHoWBnh3rChl7WhdyCxW3jgq1daEjPPqoi7sJvdg5hEQVsgVRQP4DcnQDVjGMbASQtrY4WmB1VebF+RPJB2ECPsEDTpeiI5ZyUAwJaVX7r6bznU67g7LvFq35yIo4sdlmtZGV+i0H4cpYH9+3JJ78k\" \"m4KXwaf9xUJCWF6nxeD+qG6Fyruw1Qlbds2r85U9dkNDVAS3gioCvELryh1TxKGiVTkg4wqHTyHfWsp7KD3WQHYJn0RyfJJu6YEmL77zonn7p2SRMvTMP3ZEXibnC9gz3nnhR6wcYL8Q7zXypKTMD58bTixDSJwIDAQAB\""
name = "cf2024-1._domainkey.everun.club"
proxied = false
ttl = 1
type = "TXT"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}
resource "cloudflare_dns_record" "TXT_SPF_everun_club" {
content = "v=spf1 include:_spf.mx.cloudflare.net ~all"
name = "everun.club"
proxied = false
ttl = 1
type = "TXT"
zone_id = "e9c231bc72eb7397b4d12f8c6563a35c"
settings = {}
}