89 lines
1.7 KiB
HCL
89 lines
1.7 KiB
HCL
resource "porkbun_dns_record" "manero_root_a_1" {
|
|
domain = "manero.org"
|
|
name = ""
|
|
content = "185.199.108.153"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_root_a_2" {
|
|
domain = "manero.org"
|
|
name = ""
|
|
content = "185.199.109.153"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_root_a_3" {
|
|
domain = "manero.org"
|
|
name = ""
|
|
content = "185.199.110.153"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_root_a_4" {
|
|
domain = "manero.org"
|
|
name = ""
|
|
content = "185.199.111.153"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_irc_a" {
|
|
domain = "manero.org"
|
|
name = "irc"
|
|
content = "149.28.242.178"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_us_a" {
|
|
domain = "manero.org"
|
|
name = "us"
|
|
content = "149.28.242.178"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_us_aaaa" {
|
|
domain = "manero.org"
|
|
name = "us"
|
|
content = "2001:19f0:6401:19e6:5400:5ff:fe45:5701"
|
|
type = "AAAA"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_ca_a" {
|
|
domain = "manero.org"
|
|
name = "ca"
|
|
content = "167.114.209.151"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_tankfox_a" {
|
|
domain = "manero.org"
|
|
name = "tankfox"
|
|
content = "137.184.202.89"
|
|
type = "A"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|
|
|
|
resource "porkbun_dns_record" "manero_404" {
|
|
domain = "manero.org"
|
|
name = "404"
|
|
content = "404.al"
|
|
type = "CNAME"
|
|
ttl = 3600
|
|
priority = 0
|
|
}
|