Puppet Class: stns::client::config

Defined in:
manifests/client/config.pp

Overview

Parameters:

  • api_end_point (Optional[String]) (defaults to: $stns::client::api_end_point)
  • auth_token (Optional[String]) (defaults to: $stns::client::auth_token)
  • user (Optional[String]) (defaults to: $stns::client::user)
  • password (Optional[String]) (defaults to: $stns::client::password)
  • wrapper_path (Optional[String]) (defaults to: $stns::client::wrapper_path)
  • chain_ssh_wrapper (Optional[String]) (defaults to: $stns::client::chain_ssh_wrapper)
  • ssl_verify (Optional[Boolean]) (defaults to: $stns::client::ssl_verify)
  • request_timeout (Optional[Integer]) (defaults to: $stns::client::request_timeout)
  • request_retry (Optional[Integer]) (defaults to: $stns::client::request_retry)
  • http_proxy (Optional[String]) (defaults to: $stns::client::http_proxy)
  • uid_shift (Optional[Integer]) (defaults to: $stns::client::uid_shift)
  • gid_shift (Optional[Integer]) (defaults to: $stns::client::gid_shift)


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'),
  }

}