mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
- This makes it possible to use dynamic zone config with AutoArpa - Document what gotchas that entails - Add tests both with another source (for generating zones to populate) and without (no zones to populate)
31 lines
552 B
YAML
31 lines
552 B
YAML
manager:
|
|
max_workers: 2
|
|
auto_arpa:
|
|
populate_should_replace: True
|
|
ttl: 1800
|
|
|
|
providers:
|
|
in:
|
|
class: octodns.provider.yaml.YamlProvider
|
|
directory: tests/config/dynamic-arpa
|
|
supports_root_ns: False
|
|
strict_supports: False
|
|
dump:
|
|
class: octodns.provider.yaml.YamlProvider
|
|
directory: env/YAML_TMP_DIR
|
|
default_ttl: 999
|
|
supports_root_ns: False
|
|
strict_supports: False
|
|
zones:
|
|
unit.tests.:
|
|
sources:
|
|
- in
|
|
targets:
|
|
- dump
|
|
"*.arpa.":
|
|
sources:
|
|
- in
|
|
- auto-arpa
|
|
targets:
|
|
- dump
|