1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# Define heat::clients::base
#
# common client configuration
#
# == Parameters
#
# [*section*]
# (Optional) Section name used to configure parameters.
# Defaults to $name.
#
# [*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'].
#
define heat::clients::base (
$section = $name,
$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
heat_config {
"${section}/endpoint_type": value => $endpoint_type;
"${section}/ca_file": value => $ca_file;
"${section}/cert_file": value => $cert_file;
"${section}/key_file": value => $key_file;
"${section}/insecure": value => $insecure;
}
}
|