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
|
[
{
"interface": "eth0",
"fqdn": "vpn.private-client.com",
"ttl": 600,
"record_type": "A",
"providers": [
{
"type": "GANDI",
"api_key": "SOME_API_KEY"
}
],
"ip_service": {
"type": "IDENTME",
"url": "https://v4.ident.me/"
}
},
{
"interface": "eth1",
"fqdn": "vpn2.private-client2.com",
"ttl": 1800,
"record_type": "AAAA",
"providers": [
{
"type": "GANDI",
"api_key": "SOME_OTHER_API_KEY"
}
],
"ip_service": {
"type": "IDENTME",
"url": "https://v4.ident.me/"
}
}
]
|