da45ce8a21
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: Ib395d70d0d528adfef6600f67f9cd6bb238f8206
48 lines
1.3 KiB
Puppet
48 lines
1.3 KiB
Puppet
# Class heat::clients
|
|
#
|
|
# default client configuration
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*endpoint_type*]
|
|
# (Optional) Type of endpoint in Identity service catalog to use for
|
|
# communication with the OpenStack service.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*ca_file*]
|
|
# (Optional) Optional CA cert file to use in SSL communications.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*cert_file*]
|
|
# (Optional) Optional PEM-formatted certificate chain file.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*key_file*]
|
|
# (Optional) Optional PEM-formatted file that contains the private key.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*insecure*]
|
|
# (Optional) If set, then the server's certificate will not be verified.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
class heat::clients (
|
|
$endpoint_type = $facts['os_service_default'],
|
|
$ca_file = $facts['os_service_default'],
|
|
$cert_file = $facts['os_service_default'],
|
|
$key_file = $facts['os_service_default'],
|
|
$insecure = $facts['os_service_default'],
|
|
) {
|
|
|
|
include heat::deps
|
|
|
|
$endpoint_type_real = pick($::heat::heat_clients_endpoint_type, $endpoint_type)
|
|
|
|
heat::clients::base { 'clients':
|
|
endpoint_type => $endpoint_type_real,
|
|
ca_file => $ca_file,
|
|
cert_file => $cert_file,
|
|
key_file => $key_file,
|
|
insecure => $insecure,
|
|
}
|
|
}
|