From f9ccd4342cce4c6e2fc2dfaea7447cce949ac3fa Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 28 Jul 2021 18:49:52 -0700 Subject: [PATCH 1/3] create FUNDING.yml w/ross --- .github/FUNDING.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..047c9ed --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +# These are supported funding model platforms + +github: ross From e8ebe936bee81d1a894a247c28ecfeeda75efdb7 Mon Sep 17 00:00:00 2001 From: "Roger D. Winans" Date: Mon, 2 Aug 2021 12:32:29 -0400 Subject: [PATCH 2/3] 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 3/3] 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+)$',