Browse Source

Add: Documentation on how to utilise the new behaviour.

pull/264/head
Matt 7 years ago
parent
commit
a0eaefb330
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      octodns/provider/cloudflare.py

+ 10
- 0
octodns/provider/cloudflare.py View File

@ -47,6 +47,16 @@ class CloudflareProvider(BaseProvider):
# #
# See: https://support.cloudflare.com/hc/en-us/articles/115000830351 # See: https://support.cloudflare.com/hc/en-us/articles/115000830351
cdn: false cdn: false
Note: The "proxied" flag of "A", "AAAA" and "CNAME" records can be managed
via the YAML provider like so:
name:
octodons:
cloudflare:
proxied: true
ttl: 120
type: A
value: 1.2.3.4
''' '''
SUPPORTS_GEO = False SUPPORTS_GEO = False
SUPPORTS = set(('ALIAS', 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'SRV', SUPPORTS = set(('ALIAS', 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'SRV',


Loading…
Cancel
Save