From e8ebe936bee81d1a894a247c28ecfeeda75efdb7 Mon Sep 17 00:00:00 2001 From: "Roger D. Winans" Date: Mon, 2 Aug 2021 12:32:29 -0400 Subject: [PATCH 1/2] Clarify Mythic Beasts uses DNS API v1 and fix the provider YAML in `class MythicBeastsProvider(BaseProvider)` --- octodns/provider/mythicbeasts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/octodns/provider/mythicbeasts.py b/octodns/provider/mythicbeasts.py index b255a74..63e4d4d 100644 --- a/octodns/provider/mythicbeasts.py +++ b/octodns/provider/mythicbeasts.py @@ -70,8 +70,8 @@ class MythicBeastsProvider(BaseProvider): ... mythicbeasts: class: octodns.provider.mythicbeasts.MythicBeastsProvider - passwords: - my.domain.: 'password' + passwords: + my.domain.: 'DNS API v1 password' zones: my.domain.: From b873997ef5599478f22f6fe2c27bfe3971b84ddd Mon Sep 17 00:00:00 2001 From: "Roger D. Winans" Date: Mon, 2 Aug 2021 12:53:43 -0400 Subject: [PATCH 2/2] Match zone target to provider ID --- octodns/provider/mythicbeasts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octodns/provider/mythicbeasts.py b/octodns/provider/mythicbeasts.py index 63e4d4d..e1a2b04 100644 --- a/octodns/provider/mythicbeasts.py +++ b/octodns/provider/mythicbeasts.py @@ -76,7 +76,7 @@ class MythicBeastsProvider(BaseProvider): zones: my.domain.: targets: - - mythic + - mythicbeasts ''' RE_MX = re.compile(r'^(?P[0-9]+)\s+(?P\S+)$',