Skip to content

Commit b47c52e

Browse files
committed
feat: added OPENPGPKEY Record
1 parent b25e3ae commit b47c52e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ DesecProvider supports:
5454
- TLSA
5555
- TXT
5656
- SSHFP
57+
- OPENPGPKEY
5758
5859
#### unsupported Records (octodns)
5960
6061
https://octodns.readthedocs.io/en/latest/api/records.html
6162
Records not supported at the moment:
6263
63-
- OPENPGPKEY
6464
- SMIMEA
6565
6666
#### Dynamic

octodns_desec/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from octodns.provider.base import BaseProvider
1111
from octodns.record import Record
1212

13-
__version__ = __VERSION__ = '1.2.0'
13+
__version__ = __VERSION__ = '1.3.0'
1414

1515

1616
class DesecAPIException(ProviderException):
@@ -288,6 +288,7 @@ class DesecProvider(BaseProvider):
288288
'SRV',
289289
'TLSA',
290290
'TXT',
291+
'OPENPGPKEY',
291292
}
292293

293294
def __init__(
@@ -561,3 +562,4 @@ def _data_for_SSHFP(self, _type, records):
561562
_data_for_CNAME = _data_for_single
562563
_data_for_NS = _data_for_multiple
563564
_data_for_PTR = _data_for_single
565+
_data_for_OPENPGPKEY = _data_for_multiple

0 commit comments

Comments
 (0)