2024-08-15 15:04:13 -07:00
|
|
|
resource "cloudflare_record" "any_jafner_chat" {
|
2024-08-28 13:11:54 -07:00
|
|
|
content = chomp(data.http.myip.response_body)
|
2024-08-15 15:04:13 -07:00
|
|
|
name = "*"
|
|
|
|
proxied = false
|
|
|
|
ttl = 1
|
|
|
|
type = "A"
|
|
|
|
zone_id = data.cloudflare_zone.jafner_chat.id
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "cloudflare_record" "root_jafner_chat" {
|
2024-08-28 13:11:54 -07:00
|
|
|
content = chomp(data.http.myip.response_body)
|
2024-08-15 15:04:13 -07:00
|
|
|
name = "jafner.chat"
|
|
|
|
proxied = false
|
|
|
|
ttl = 1
|
|
|
|
type = "A"
|
|
|
|
zone_id = data.cloudflare_zone.jafner_chat.id
|
|
|
|
}
|
|
|
|
|