diff --git a/docs/tutorials/aws.md b/docs/tutorials/aws.md index d4ac65741..6bc55dd0f 100644 --- a/docs/tutorials/aws.md +++ b/docs/tutorials/aws.md @@ -971,8 +971,9 @@ Route53 has a [5 API requests per second per account hard quota](https://docs.aw Running several fast polling ExternalDNS instances in a given account can easily hit that limit. Some ways to reduce the request rate include: * Reduce the polling loop's synchronization interval at the possible cost of slower change propagation (but see `--events` below to reduce the impact). * `--interval=5m` (default `1m`) -* Trigger the polling loop on changes to K8s objects, rather than only at `interval`, to have responsive updates with long poll intervals +* Trigger the polling loop on changes to K8s objects, rather than only at `interval` and ensure a minimum of time between events, to have responsive updates with long poll intervals * `--events` + * `--min-event-sync-interval=5m` (default `5s`) * Limit the [sources watched](https://github.com/kubernetes-sigs/external-dns/blob/master/pkg/apis/externaldns/types.go#L364) when the `--events` flag is specified to specific types, namespaces, labels, or annotations * `--source=ingress --source=service` - specify multiple times for multiple sources * `--namespace=my-app`