1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Add R53_ZONE as an domain identifier (#1241)

Using R53_ZONE allows you to differentiate between split horizon
domains across zones.
This commit is contained in:
Vincent Hagen
2021-09-02 22:54:54 +02:00
committed by GitHub
parent 3fa5712232
commit 8c5db2e11c
5 changed files with 108 additions and 24 deletions

View File

@ -0,0 +1,7 @@
D('foo.com', 'none', R53_ZONE('Z2FTEDLFRTZ'));
D(
'foo.com!internal',
'none',
R53_ZONE('Z2FTEDLFRTF'),
R53_ALIAS('atest', 'A', 'foo.com.', R53_ZONE('Z2FTEDLFRTZ'))
);