mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Merge pull request #649 from siddharths2710/doc/unsafe_threshold
Updated document for unsafe thresholds
This commit is contained in:
@@ -120,3 +120,18 @@ If you'd like to enable lenience for a whole zone you can do so with the followi
|
|||||||
targets:
|
targets:
|
||||||
- ns1
|
- ns1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Restrict Record manipulations
|
||||||
|
|
||||||
|
OctoDNS currently provides the ability to limit the number of updates/deletes on
|
||||||
|
DNS records by configuring a percentage of allowed operations as a threshold.
|
||||||
|
If left unconfigured, suitable defaults take over instead. In the below example,
|
||||||
|
the Dyn provider is configured with limits of 40% on both update and
|
||||||
|
delete operations over all the records present.
|
||||||
|
|
||||||
|
````yaml
|
||||||
|
dyn:
|
||||||
|
class: octodns.provider.dyn.DynProvider
|
||||||
|
update_pcent_threshold: 0.4
|
||||||
|
delete_pcent_threshold: 0.4
|
||||||
|
````
|
||||||
|
Reference in New Issue
Block a user