From 1b69d22af677d4eb79b46140b5f840ded48c9f76 Mon Sep 17 00:00:00 2001 From: Fabrice Baumann Date: Thu, 1 Feb 2018 12:06:16 -0500 Subject: [PATCH] Update the octodns meta record to include the name of all the targets --- octodns/manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/octodns/manager.py b/octodns/manager.py index aebcaf8..875ec31 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -223,7 +223,8 @@ class Manager(object): meta = Record.new(zone, 'octodns-meta', { 'type': 'TXT', 'ttl': 604800, - 'value': 'provider={}'.format(target.id) + 'value': 'providers={}'.format(['{}'.format(v.id) + for v in targets]) }) zone.add_record(meta, replace=True) plan = target.plan(zone)