Puppet Class: tripleo::profile::base::barbican::authtoken

Defined in:
manifests/profile/base/barbican/authtoken.pp

Overview

Copyright 2019 Red Hat, Inc.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Class: tripleo::profile::base::barbican::authtoken

Barbican authtoken profile for TripleO

Parameters

step

(Optional) The current step in deployment. See tripleo-heat-templates for more details. Defaults to hiera(‘step’)

memcached_hosts

(Optional) Array of hostnames, ipv4 or ipv6 addresses for memcache. Defaults to hiera(‘memcached_node_names’, [])

memcached_port

(Optional) Memcached port to use. Defaults to hiera(‘memcached_authtoken_port’, 11211)

memcached_ipv6

(Optional) Whether Memcached uses IPv6 network instead of IPv4 network. Defauls to hiera(‘memcached_ipv6’, false)

security_strategy

(Optional) Memcached (authtoken) security strategy. Defaults to hiera(‘memcached_authtoken_security_strategy’, undef)

secret_key

(Optional) Memcached (authtoken) secret key, used with security_strategy. The key is hashed with a salt, to isolate services. Defaults to hiera(‘memcached_authtoken_secret_key’, undef)

DEPRECATED PARAMETERS

memcached_ips

(Optional) Array of ipv4 or ipv6 addresses for memcache. Defaults to undef

Parameters:

  • step (Any) (defaults to: Integer(hiera('step')))
  • memcached_hosts (Any) (defaults to: hiera('memcached_node_names', []))
  • memcached_port (Any) (defaults to: hiera('memcached_authtoken_port', 11211))
  • memcached_ipv6 (Any) (defaults to: hiera('memcached_ipv6', false))
  • security_strategy (Any) (defaults to: hiera('memcached_authtoken_security_strategy', undef))
  • secret_key (Any) (defaults to: hiera('memcached_authtoken_secret_key', undef))
  • memcached_ips (Any) (defaults to: undef)


53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'manifests/profile/base/barbican/authtoken.pp', line 53

class tripleo::profile::base::barbican::authtoken (
  $step                = Integer(hiera('step')),
  $memcached_hosts     = hiera('memcached_node_names', []),
  $memcached_port      = hiera('memcached_authtoken_port', 11211),
  $memcached_ipv6      = hiera('memcached_ipv6', false),
  $security_strategy   = hiera('memcached_authtoken_security_strategy', undef),
  $secret_key          = hiera('memcached_authtoken_secret_key', undef),
  # DEPRECATED PARAMETERS
  $memcached_ips       = undef
) {
  $memcached_hosts_real = any2array(pick($memcached_ips, $memcached_hosts))

  if $step >= 3 {
    if $memcached_ipv6 or $memcached_hosts_real[0] =~ Stdlib::Compat::Ipv6 {
      $memcache_servers = $memcached_hosts_real.map |$server| { "inet6:[${server}]:${memcached_port}" }
    } else {
      $memcache_servers = suffix($memcached_hosts_real, ":${memcached_port}")
    }

    if $secret_key {
      $hashed_secret_key = sha256("${secret_key}+barbican")
    } else {
      $hashed_secret_key = undef
    }

    class { 'barbican::keystone::authtoken':
      memcached_servers          => $memcache_servers,
      memcache_security_strategy => $security_strategy,
      memcache_secret_key        => $hashed_secret_key,
    }
  }
}