Skip to content

Commit

Permalink
Allow port to be undef in resource definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
johanfleury committed Sep 2, 2018
1 parent e53c0b1 commit 81ea149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/config/resource.pp
Expand Up @@ -64,7 +64,7 @@
String $resource_name = $title,
Enum['db', 'ldap'] $type = undef,
String $host = undef,
Integer[1,65535] $port = undef,
Optional[Integer[1,65535]] $port = undef,
Optional[Enum['mysql', 'pgsql']] $db_type = undef,
Optional[String] $db_name = undef,
Optional[String] $db_username = undef,
Expand Down

0 comments on commit 81ea149

Please sign in to comment.