Joey Hafner
c5231f1311
- Import existing records via cf-terraforming utility - Rename resources to human-readable names - Move aws and cloudflare terraform roots to their own directories
19 lines
395 B
HCL
19 lines
395 B
HCL
resource "cloudflare_record" "any_jafner_chat" {
|
|
content = "174.21.59.108"
|
|
name = "*"
|
|
proxied = false
|
|
ttl = 1
|
|
type = "A"
|
|
zone_id = data.cloudflare_zone.jafner_chat.id
|
|
}
|
|
|
|
resource "cloudflare_record" "root_jafner_chat" {
|
|
content = "174.21.59.108"
|
|
name = "jafner.chat"
|
|
proxied = false
|
|
ttl = 1
|
|
type = "A"
|
|
zone_id = data.cloudflare_zone.jafner_chat.id
|
|
}
|
|
|