-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathexampleprovider.exampleservice.json
99 lines (99 loc) · 2.82 KB
/
exampleprovider.exampleservice.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"providerId": "exampleProvider",
"providerName": "Example Provider Name",
"serviceId": "exampleService",
"serviceName": "Example Service Name",
"version": 1,
"logoUrl": "https://example.com/logo.svg",
"description": "Example description explaining overall purpose of the record updates",
"variableDescription": "%a%: domain apex IP; %sub%: sub record destination; %cnamehost%: host pointing to sub destination; %txt%: domain apex text; %mx%: domain apex mail destination; %target%: domain apex service record target; %ttlvar%: variable TTL for SRV record; %srvport%: variable port for SRV record; %srvproto%: variable ptotocol of SRV record; %srvservice%: variable service of SRV record",
"syncPubKeyDomain": "syncPubKeyDomain",
"syncRedirectDomain": "syncRedirectDomain",
"warnPhishing": true,
"records": [
{
"type": "A",
"host": "@",
"pointsTo": "192.0.2.1",
"ttl": 3600
},
{
"type": "A",
"host": "@",
"pointsTo": "%a%",
"ttl": 3600
},
{
"type": "CNAME",
"host": "www",
"pointsTo": "@",
"ttl": 3600
},
{
"type": "CNAME",
"host": "sub",
"pointsTo": "%sub%.mydomain.com",
"ttl": 3600
},
{
"type": "CNAME",
"host": "%cnamehost%",
"pointsTo": "%sub%.mydomain.com",
"ttl": 3600
},
{
"type": "TXT",
"host": "@",
"ttl": 3600,
"data": "%txt%"
},
{
"type": "SPFM",
"host": "@",
"ttl": 0,
"spfRules": "include:spf.mydomain.com"
},
{
"type": "MX",
"host": "@",
"pointsTo": "%mx%",
"ttl": 3600,
"priority": 5
},
{
"type": "MX",
"host": "@",
"pointsTo": "192.0.2.2",
"ttl": 3600,
"priority": "%mxprio%"
},
{
"type": "SRV",
"name": "@",
"ttl": 3600,
"priority": 10,
"weight": 20,
"port": 443,
"protocol": "_tls",
"service": "_sip",
"target": "%target%"
},
{
"type": "CAA",
"host": "@",
"data": "0 issuewild \"ca2.example.\"",
"ttl": 1800
},
{
"type": "SRV",
"name": "@",
"ttl": "%ttlvar%",
"priority": "0",
"weight": "20",
"port": "%srvport%",
"protocol": "%srvproto%",
"service": "_%srvservice%",
"target": "srv.example.com"
}
]
}