Skip to content

Commit

Permalink
add information about ssl cert files to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zlanyi committed Sep 2, 2016
1 parent 85a2cea commit 0d8462d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,36 @@ Web context path to use, such as "/rundeck". http://host.domain:port/server_web_
#####`ssl_enabled`
Enable ssl for the Rundeck web application.

#####`ssl_keyfile`
#####`ssl_certfile`
If ssl enabled you need set up this. You need provide the crt and key files in your profile oder role manifest.

How to: eg: environments/role/manifests/rundeck.pp

class role::rundeck (
...
$ssl_keyfile = hiera('rundeck::config::ssl_keyfile', "/etc/rundeck/ssl/$fqdn.key"),
$ssl_certfile = hiera('rundeck::config::ssl_certfile', "/etc/rundeck/ssl/$fqdn.crt"),
..
){
...
validate_string($ssl_keyfile)
validate_string($ssl_certfile)
...
class { 'rundeck':
...
ssl_keyfile => $ssl_keyfile,
ssl_certfile => $ssl_certfile,
...
}
...
}

Am End please add the module below to your environments/Puppetfile to use java_ks:
mod 'java_ks',
:git => 'https://github.com/puppetlabs/puppetlabs-java_ks.git',
:tag => '1.4.1'

#####`session_timeout`
Time limit (in minutes) for a logged in Rundeck web application user which as been inactive for a period of time.

Expand Down

0 comments on commit 0d8462d

Please sign in to comment.