2020-02-22 20:22:28 +00:00
resource " cloudflare_zone " " theorangeonenet " {
zone = " theorangeone.net "
}
2020-03-20 20:57:23 +00:00
resource " cloudflare_record " " theorangeonenet_git " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " git "
2022-01-21 21:52:21 +00:00
value = linode_instance . casey . ip_address
2020-03-20 20:57:23 +00:00
type = " A "
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_whoami " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " whoami "
2022-01-21 21:52:21 +00:00
value = linode_instance . casey . ip_address
2020-03-20 20:57:23 +00:00
type = " A "
ttl = 1
}
2020-03-20 21:12:24 +00:00
resource " cloudflare_record " " theorangeonenet_mx1 " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " @ "
value = " in1-smtp.messagingengine.com "
type = " MX "
priority = 10
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_mx2 " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " @ "
value = " in2-smtp.messagingengine.com "
type = " MX "
priority = 20
ttl = 1
}
2022-02-13 16:43:09 +00:00
resource " cloudflare_record " " theorangeonenet_spf " {
2020-03-20 21:12:24 +00:00
zone_id = cloudflare_zone . theorangeonenet . id
name = " @ "
2022-09-22 21:26:26 +01:00
value = " v=spf1 include:spf.messagingengine.com -all "
2020-03-20 21:12:24 +00:00
type = " TXT "
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_dkim_fm1 " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " fm1._domainkey "
value = " fm1.theorangeone.net.dkim.fmhosted.com "
type = " CNAME "
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_dkim_fm2 " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " fm2._domainkey "
value = " fm2.theorangeone.net.dkim.fmhosted.com "
type = " CNAME "
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_dkim_fm3 " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " fm3._domainkey "
value = " fm3.theorangeone.net.dkim.fmhosted.com "
type = " CNAME "
ttl = 1
}
2020-03-20 21:38:18 +00:00
2022-09-22 21:12:41 +01:00
resource " cloudflare_record " " theorangeonenet_dmarc " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " _dmarc "
2023-04-28 20:55:46 +01:00
value = " v=DMARC1; p=quarantine; ruf=mailto:dmarc-report@jakehoward.tech; "
2022-09-22 21:12:41 +01:00
type = " TXT "
ttl = 1
}
2023-01-26 12:11:01 +00:00
resource " cloudflare_record " " theorangeonenet_dmarc_report " {
for_each = toset ( [
cloudflare_zone . theorangeonenet . zone ,
cloudflare_zone . jakehowardtech . zone ,
cloudflare_record . theorangeonenet_mailgun_spf . hostname ,
cloudflare_record . jakehowardtech_mailgun_spf . hostname ,
] )
zone_id = cloudflare_zone . theorangeonenet . id
name = " ${ each . value } ._report._dmarc "
value = " v=DMARC1 "
type = " TXT "
ttl = 1
}
2023-04-23 18:08:38 +01:00
# Cloudflare supports CNAME flattening - so this is ok
2020-03-20 21:38:18 +00:00
resource " cloudflare_record " " theorangeonenet_apex " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " @ "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2020-03-20 21:38:18 +00:00
ttl = 1
}
2020-03-20 22:11:43 +00:00
resource " cloudflare_record " " theorangeonenet_srv_matrix " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " _matrix._tcp "
type = " SRV "
ttl = 1
data = {
service = " _matrix "
proto = " _tcp "
name = " theorangeone.net "
priority = 10
weight = 0
port = 8448
target = cloudflare_record . jakehowardtech_matrix . hostname
}
}
2020-05-08 21:27:32 +01:00
resource " cloudflare_record " " theorangeonenet_img " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " img "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2020-05-08 21:27:32 +01:00
ttl = 1
}
2022-02-13 20:54:46 +00:00
resource " cloudflare_record " " theorangeonenet_matrix " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " matrix "
value = linode_instance . casey . ip_address
type = " A "
ttl = 1
}
2020-05-08 21:27:32 +01:00
resource " cloudflare_record " " theorangeonenet_dl " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " dl "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2020-05-08 21:27:32 +01:00
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_bg " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " bg "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2020-05-08 21:27:32 +01:00
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_upload " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " upload "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2020-05-08 21:27:32 +01:00
ttl = 1
}
2020-05-17 18:04:44 +01:00
2020-07-21 20:55:44 +01:00
resource " cloudflare_record " " theorangeonenet_plausible " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " plausible "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2020-07-21 20:55:44 +01:00
ttl = 1
}
2020-08-30 17:46:52 +01:00
2020-11-25 11:11:29 +00:00
resource " cloudflare_record " " theorangeonenet_plausible_bare " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " elbisualp "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2020-09-05 16:50:56 +01:00
ttl = 1
}
2020-09-05 20:33:57 +01:00
2020-09-30 18:49:36 +01:00
resource " cloudflare_record " " theorangeonenet_notes " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " notes "
2023-03-29 23:04:12 +01:00
value = " realorangeone.gitlab.io "
2020-09-30 18:49:36 +01:00
type = " CNAME "
ttl = 1
}
2021-02-12 23:32:31 +00:00
2023-03-29 22:36:03 +01:00
resource " cloudflare_record " " theorangeonenet_notes_verification " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " _gitlab-pages-verification-code.notes "
2023-03-29 23:03:41 +01:00
value = " gitlab-pages-verification-code=7e627bf01943caf5669d26c700d0adb9 "
2023-03-29 22:36:03 +01:00
type = " TXT "
ttl = 1
}
2021-02-12 23:32:31 +00:00
resource " cloudflare_record " " theorangeonenet_privatebin " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " bin "
2022-01-21 21:52:21 +00:00
value = linode_instance . casey . ip_address
2021-02-12 23:32:31 +00:00
type = " A "
ttl = 1
}
2021-06-20 12:01:20 +01:00
resource " cloudflare_record " " theorangeonenet_dokku " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " d "
2023-04-23 17:48:15 +01:00
value = cloudflare_record . sys_domain_grimes . hostname
type = " CNAME "
2021-06-20 12:01:20 +01:00
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_dokku_wildcard " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " *.d "
2023-04-23 17:48:15 +01:00
value = cloudflare_record . theorangeonenet_dokku . hostname
type = " CNAME "
2021-06-20 12:01:20 +01:00
ttl = 1
}
2021-09-25 21:34:18 +01:00
2022-02-13 16:43:09 +00:00
resource " cloudflare_record " " theorangeonenet_google_site_verification " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " @ "
value = " google-site-verification=IXY4iSBN_vOcM3cp_f-BgVvEI_shz1GzXuY_8dqY61o "
type = " TXT "
ttl = 1
}
2022-06-05 15:44:49 +01:00
resource " cloudflare_record " " theorangeonenet_commento " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " commento "
2023-04-23 18:08:38 +01:00
value = cloudflare_record . sys_domain_walker . hostname
type = " CNAME "
2022-06-05 15:44:49 +01:00
ttl = 1
}
2022-09-22 21:22:05 +01:00
resource " cloudflare_record " " theorangeonenet_mailgun_spf " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " mg "
2022-09-22 21:26:26 +01:00
value = " v=spf1 include:mailgun.org -all "
2022-09-22 21:22:05 +01:00
type = " TXT "
ttl = 1
}
resource " cloudflare_record " " theorangeonenet_mailgun_dkim " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " mta._domainkey.mg "
value = " k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Z/MHEzpbWm5EgMkyWb+Xkz44Xrzr4SA5i2u8M2H5yZ1PSb4DpGk3IAX+I05UWax02+WBW3CBb5wU9rH9flgxezBoCf/hiMS1Wjb9hKGIBa2jMCzpF+wa5fyqLkLoAJZF4bc/BJKyi/ET2c7+DAA/2KlWv/nv4MEjcUR4hNGLPEC9+6PhUp8z2PnUQLzPRWHpKc1oLrnROWaX3XxdDekCzwyOw7ygzZdThVevE+0CqXVOt5SUSUCnd2tjVbvblGi6DBiQY5Tl6+xLqkQHCRqks9187+EN4FdJXkjQodkFzzyiBH5cXVGiZLOhal4koEvxGirr596qM97bIXiJWArdQIDAQAB "
type = " TXT "
ttl = 1
}
2022-09-22 21:29:21 +01:00
resource " cloudflare_record " " theorangeonenet_mailgun_dmarc " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " _dmarc.mg "
2023-04-28 20:55:46 +01:00
value = " v=DMARC1; p=quarantine; ruf=mailto:dmarc-report@jakehoward.tech; "
2022-09-22 21:29:21 +01:00
type = " TXT "
ttl = 1
}
2022-10-08 15:51:37 +01:00
2022-11-18 09:12:28 +00:00
resource " cloudflare_record " " theorangeonenet_mastodon " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " mastodon "
value = linode_instance . casey . ip_address
type = " A "
ttl = 1
}
2023-05-07 18:11:23 +01:00
resource " cloudflare_record " " theorangeonenet_caa " {
zone_id = cloudflare_zone . theorangeonenet . id
name = " @ "
type = " CAA "
ttl = 1
data = {
tag = " issue "
flags = 0
value = " letsencrypt.org "
}
}