Skip to content

Commit

Permalink
feat: Add support for SSHFP record type
Browse files Browse the repository at this point in the history
  • Loading branch information
nbuchwitz committed Mar 12, 2023
1 parent 3c5238e commit 9a409fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nc_dnsapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __eq__(self, other):


class DNSRecord(object):
__valid_types = ['A', 'AAAA', 'MX', 'CNAME', 'CAA', 'SRV', 'TXT', 'TLSA', 'NS', 'DS', 'OPENPGPKEY', 'SMIMEA']
__valid_types = ['A', 'AAAA', 'MX', 'CNAME', 'CAA', 'SRV', 'TXT', 'TLSA', 'NS', 'DS', 'OPENPGPKEY', 'SMIMEA', 'SSHFP']

def __init__(self, hostname, type, destination, **kwargs):
self.hostname = hostname
Expand Down

0 comments on commit 9a409fe

Please sign in to comment.