6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'manifests/client/config.pp', line 6
class stns::client::config (
Optional[String] $api_end_point = $stns::client::api_end_point,
Optional[String] $auth_token = $stns::client::auth_token,
Optional[String] $user = $stns::client::user,
Optional[String] $password = $stns::client::password,
Optional[String] $wrapper_path = $stns::client::wrapper_path,
Optional[String] $chain_ssh_wrapper = $stns::client::chain_ssh_wrapper,
Optional[Boolean] $ssl_verify = $stns::client::ssl_verify,
Optional[Integer] $request_timeout = $stns::client::request_timeout,
Optional[Integer] $request_retry = $stns::client::request_retry,
Optional[String] $http_proxy = $stns::client::http_proxy,
Optional[Integer] $uid_shift = $stns::client::uid_shift,
Optional[Integer] $gid_shift = $stns::client::gid_shift,
){
file { '/etc/stns/client/stns.conf':
ensure => present,
owner => 'root',
group => 'root',
mode => '0644',
content => template('stns/client/stns.conf.erb'),
}
}
|