1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

NS1 does not support SSHFP

This commit is contained in:
Ross McFarland
2017-06-04 14:07:12 -07:00
parent 703ec00e24
commit 1b1590011c

View File

@@ -30,6 +30,9 @@ class Ns1Provider(BaseProvider):
super(Ns1Provider, self).__init__(id, *args, **kwargs)
self._client = NSONE(apiKey=api_key)
def supports(self, record):
return record._type != 'SSHFP'
def _data_for_A(self, _type, record):
return {
'ttl': record['ttl'],