diff options
author | James Li <yueli.m@gmail.com> | 2016-01-27 05:03:48 +0000 |
---|---|---|
committer | James Li <yueli.m@gmail.com> | 2016-02-03 20:32:17 +0000 |
commit | 79a4af04556d904f9f4e4b9d9a91b54652b9f287 (patch) | |
tree | a44bbc388891c74c6f442d600b9b4af862380f39 /etc | |
parent | aaf0defeb7ce794d4488deae6744956f0349973c (diff) | |
download | designate-79a4af04556d904f9f4e4b9d9a91b54652b9f287.tar.gz |
Make supported record type configurable
Also made the distinction between 'valid' and 'supported' record
types. For example an error of "'foo' is not a valid record type"
will return when user tries to create a record type of 'foo'.
User will get "'SPF' is not a supported record type" if operator
chooses not to expose SPF.
Implements blueprint configurable-record-type
Change-Id: I22410a760a5ec78270162496ee03f2b2b8ba7d25
Diffstat (limited to 'etc')
-rw-r--r-- | etc/designate/designate.conf.sample | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/designate/designate.conf.sample b/etc/designate/designate.conf.sample index 8acc5117..315a36b4 100644 --- a/etc/designate/designate.conf.sample +++ b/etc/designate/designate.conf.sample @@ -34,6 +34,9 @@ debug = False # Which networking API to use, Defaults to neutron #network_api = neutron +# Supported record types +#supported_record_type = A, AAAA, CNAME, MX, SRV, TXT, SPF, NS, PTR, SSHFP, SOA + #----------------------- # RabbitMQ Config #----------------------- |