aboutsummaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2015-03-13 16:15:12 -0400
committerDan Prince <dprince@redhat.com>2015-03-18 08:59:05 -0400
commitb774f4a6270e1192efa37e249d7ad9529ce2ccde (patch)
tree5495717be17c254d0a9b3cbe1bbe3a73fdbf0af6 /manifests
parent68e85e520d73527bc04bd70807b749091391d8e4 (diff)
loadbalancer: drop undef on required params
This should allow puppet to validate the required params. Change-Id: I16b6ae1a9fbcb388bfe5a2a95022a2fdffbf0cd1
Diffstat (limited to 'manifests')
-rw-r--r--manifests/loadbalancer.pp10
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/loadbalancer.pp b/manifests/loadbalancer.pp
index c9e3b41..bbdec10 100644
--- a/manifests/loadbalancer.pp
+++ b/manifests/loadbalancer.pp
@@ -117,11 +117,11 @@
# Defaults to false
#
class tripleo::loadbalancer (
- $controller_host = undef,
- $controller_virtual_ip = undef,
- $control_virtual_interface = undef,
- $public_virtual_interface = undef,
- $public_virtual_ip = undef,
+ $controller_host,
+ $controller_virtual_ip,
+ $control_virtual_interface,
+ $public_virtual_interface,
+ $public_virtual_ip,
$keystone_admin = false,
$keystone_public = false,
$neutron = false,