diff options
author | Dan Prince <dprince@redhat.com> | 2015-03-13 16:15:12 -0400 |
---|---|---|
committer | Dan Prince <dprince@redhat.com> | 2015-03-18 08:59:05 -0400 |
commit | b774f4a6270e1192efa37e249d7ad9529ce2ccde (patch) | |
tree | 5495717be17c254d0a9b3cbe1bbe3a73fdbf0af6 /manifests/loadbalancer.pp | |
parent | 68e85e520d73527bc04bd70807b749091391d8e4 (diff) |
loadbalancer: drop undef on required params
This should allow puppet to validate the required params.
Change-Id: I16b6ae1a9fbcb388bfe5a2a95022a2fdffbf0cd1
Diffstat (limited to 'manifests/loadbalancer.pp')
-rw-r--r-- | manifests/loadbalancer.pp | 10 |
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, |