Ensure non-empty host list in pools
Some of the host options should not be empty. This enforces that using parameter types. Change-Id: Ibb5444462d0b30e8b99199196ec4c36d6f6545ba
This commit is contained in:
parent
6a61e9b9a2
commit
93fde35225
@ -60,10 +60,10 @@ class designate::backend::bind9 (
|
||||
$rndc_controls = undef,
|
||||
$rndc_port = 953,
|
||||
Hash[Integer, String] $ns_records = {1 => 'ns1.example.org.'},
|
||||
Array[String[1]] $nameservers = ['127.0.0.1'],
|
||||
Array[String[1]] $bind9_hosts = ['127.0.0.1'],
|
||||
Array[String[1], 1] $nameservers = ['127.0.0.1'],
|
||||
Array[String[1], 1] $bind9_hosts = ['127.0.0.1'],
|
||||
$dns_port = 53,
|
||||
Array[String[1]] $mdns_hosts = ['127.0.0.1'],
|
||||
Array[String[1], 1] $mdns_hosts = ['127.0.0.1'],
|
||||
$mdns_port = 5354,
|
||||
Boolean $configure_bind = true,
|
||||
Boolean $manage_pool = true,
|
||||
|
@ -38,9 +38,9 @@
|
||||
#
|
||||
class designate::backend::pdns4 (
|
||||
String[1] $api_token,
|
||||
Array[String[1]] $pdns4_hosts = ['127.0.0.1'],
|
||||
Array[String[1], 1] $pdns4_hosts = ['127.0.0.1'],
|
||||
$pdns4_port = 53,
|
||||
Array[String[1]] $mdns_hosts = ['127.0.0.1'],
|
||||
Array[String[1], 1] $mdns_hosts = ['127.0.0.1'],
|
||||
$mdns_port = 5354,
|
||||
String[1] $api_endpoint = 'http://127.0.0.1:8081',
|
||||
Optional[String[1]] $tsigkey_name = undef,
|
||||
|
Loading…
Reference in New Issue
Block a user