-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbryandady-com.tf
More file actions
69 lines (67 loc) · 1.46 KB
/
bryandady-com.tf
File metadata and controls
69 lines (67 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
module "bryandady-com" {
source = "./modules/zone"
account_id = local.account_id
zone_name = "bryandady.com"
records = [
{
name = "@"
ttl = 1
type = "TXT"
content = "\"v=spf1 include:_spf.mx.cloudflare.net include:_spf.google.com -all\""
},
{
name = "@"
ttl = 300
type = "TXT"
content = "\"google-site-verification=Lw-rZr-6xaBGMdlTSRS3er4jdc3y5DQ2okEJdyegMVo\""
},
{
name = "_dmarc"
ttl = 1
type = "TXT"
content = "\"v=DMARC1;p=quarantine;fo=1; rua=mailto:b4c69931e4884b64ba6cc0b178774023@dmarc-reports.cloudflare.net;\""
},
{
name = "@"
type = "MX"
content = "aspmx.l.google.com"
priority = 1
},
{
name = "@"
type = "MX"
content = "alt1.aspmx.l.google.com"
priority = 5
},
{
name = "@"
type = "MX"
content = "alt2.aspmx.l.google.com"
priority = 5
},
{
name = "@"
type = "MX"
content = "alt3.aspmx.l.google.com"
priority = 10
},
{
name = "@"
type = "MX"
content = "alt4.aspmx.l.google.com"
priority = 10
},
{
name = "@"
content = "bryandady-com.pages.dev"
proxied = true
type = "CNAME"
},
{
name = "www"
content = "bryandady-com.pages.dev"
proxied = true
type = "CNAME"
}
]
}