Puppet Class: watcher::neutron_client

Defined in:
manifests/neutron_client.pp

Overview

Class: watcher::neutron_client

Configure the neutron_client options

Parameters

api_version

(Optional) Version of Neutron API to use in neutronclient. Defaults to $::os_service_default

endpoint_type

(Optional) Type of endpoint to use in neutronclient. Defaults to $::os_service_default

region_name

(Optional) Region in Identify service catalog to use for communication with the OpenStack service. Defaults to $::os_service_default.

Parameters:

  • api_version (Any) (defaults to: $::os_service_default)
  • endpoint_type (Any) (defaults to: $::os_service_default)
  • region_name (Any) (defaults to: $::os_service_default)


20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'manifests/neutron_client.pp', line 20

class watcher::neutron_client (
  $api_version   = $::os_service_default,
  $endpoint_type = $::os_service_default,
  $region_name   = $::os_service_default,
) {

  include watcher::deps
  include watcher::params

  watcher_config {
    'neutron_client/api_version':   value => $api_version;
    'neutron_client/endpoint_type': value => $endpoint_type;
    'neutron_client/region_name':   value => $region_name;
  }
}