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

docstrings for each provider showing config

This commit is contained in:
Ross McFarland
2017-03-17 10:03:27 -07:00
parent 8fa2ddee09
commit da4632fb7c
8 changed files with 92 additions and 3 deletions

View File

@@ -24,6 +24,16 @@ class CloudflareAuthenticationError(Exception):
class CloudflareProvider(BaseProvider):
'''
Cloudflare DNS provider
cloudflare:
class: octodns.provider.cloudflare.CloudflareProvider
# Your Cloudflare account email address (required)
email: dns-manager@example.com
# The api key (required)
token: foo
'''
SUPPORTS_GEO = False
# TODO: support SRV
UNSUPPORTED_TYPES = ('NAPTR', 'PTR', 'SOA', 'SRV', 'SSHFP')