88 lines
2.2 KiB
HCL
88 lines
2.2 KiB
HCL
# =============================================================================
|
|
# Porkbun DNS Records
|
|
# =============================================================================
|
|
|
|
# =============================================================================
|
|
# ammocpr.com
|
|
# =============================================================================
|
|
|
|
resource "porkbun_dns_record" "ammocpr_com_a_root" {
|
|
domain = "ammocpr.com"
|
|
subdomain = ""
|
|
type = "A"
|
|
content = "204.110.191.231"
|
|
}
|
|
|
|
# =============================================================================
|
|
# manero.org
|
|
# =============================================================================
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_root_1" {
|
|
domain = "manero.org"
|
|
subdomain = ""
|
|
type = "A"
|
|
content = "185.199.108.153"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_root_2" {
|
|
domain = "manero.org"
|
|
subdomain = ""
|
|
type = "A"
|
|
content = "185.199.109.153"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_root_3" {
|
|
domain = "manero.org"
|
|
subdomain = ""
|
|
type = "A"
|
|
content = "185.199.110.153"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_root_4" {
|
|
domain = "manero.org"
|
|
subdomain = ""
|
|
type = "A"
|
|
content = "185.199.111.153"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_irc" {
|
|
domain = "manero.org"
|
|
subdomain = "irc"
|
|
type = "A"
|
|
content = "149.28.242.178"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_us" {
|
|
domain = "manero.org"
|
|
subdomain = "us"
|
|
type = "A"
|
|
content = "149.28.242.178"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_aaaa_us" {
|
|
domain = "manero.org"
|
|
subdomain = "us"
|
|
type = "AAAA"
|
|
content = "2001:19f0:6401:19e6:5400:5ff:fe45:5701"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_ca" {
|
|
domain = "manero.org"
|
|
subdomain = "ca"
|
|
type = "A"
|
|
content = "167.114.209.151"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_a_tankfox" {
|
|
domain = "manero.org"
|
|
subdomain = "tankfox"
|
|
type = "A"
|
|
content = "137.184.202.89"
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_org_cname_404" {
|
|
domain = "manero.org"
|
|
subdomain = "404"
|
|
type = "CNAME"
|
|
content = "404.al."
|
|
}
|