Skip to content

Commit 04cb600

Browse files
Mic92mweinelt
authored andcommitted
add SPF/DMARC/DKIM for wiki.nixos.org
1 parent adb4efc commit 04cb600

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

terraform/dns.tf

+15
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,21 @@ locals {
291291
type = "A"
292292
value = "65.21.240.250"
293293
},
294+
{
295+
hostname = "wiki.nixos.org"
296+
type = "TXT"
297+
value = "v=spf1 ip4:65.21.240.250 ip6:2a01:4f9:c012:8178:: ~all"
298+
},
299+
{
300+
hostname = "mail._domainkey.wiki.nixos.org"
301+
type = "TXT"
302+
value = "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDa+KjIljYr3q5MWWK7sEYzjR8OcA32zBh9BCPo6/HlY1q2ODTYsmE/FDZWpYMzM5z+ddnuGYdXia322XnZaNpZNoq1TbGYuQ5DsgAEK09CGoLuzONg3PSXTrkG7E2Sd6wstwHGJ5FHxSLKtNoWkknt9F5XAFZgXapO0w54p+BWvwIDAQAB"
303+
},
304+
{
305+
hostname = "_dmarc.wiki.nixos.org"
306+
type = "TXT"
307+
value = "v=DMARC1; p=none"
308+
},
294309
{
295310
hostname = "wiki.nixos.org"
296311
type = "AAAA"

0 commit comments

Comments
 (0)