From ca4f3ae12b9f202d535580456051110758b4ca86 Mon Sep 17 00:00:00 2001 From: thiagoluiznunes Date: Tue, 6 Feb 2024 18:36:06 -0300 Subject: [PATCH] fix(aws-provider): add aws-zone-match-parent flag value to aws config --- docs/tutorials/aws-sd.md | 1 + main.go | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/tutorials/aws-sd.md b/docs/tutorials/aws-sd.md index 053a34449b..71b33b3d48 100644 --- a/docs/tutorials/aws-sd.md +++ b/docs/tutorials/aws-sd.md @@ -225,6 +225,7 @@ metadata: spec: ... ``` + This will set the TTL for the DNS record to 60 seconds. diff --git a/main.go b/main.go index a9ad7acdcf..d4143bc432 100644 --- a/main.go +++ b/main.go @@ -233,6 +233,7 @@ func main() { ZoneIDFilter: zoneIDFilter, ZoneTypeFilter: zoneTypeFilter, ZoneTagFilter: zoneTagFilter, + ZoneMatchParent: cfg.AWSZoneMatchParent, BatchChangeSize: cfg.AWSBatchChangeSize, BatchChangeInterval: cfg.AWSBatchChangeInterval, EvaluateTargetHealth: cfg.AWSEvaluateTargetHealth,