Puppet Class: heat::keystone::auth_cfn

Defined in:
manifests/keystone/auth_cfn.pp

Overview

region

(Optional) Region for endpoint. Defaults to ‘RegionOne’.

tenant

(Optional) Tenant for heat-cfn user. Defaults to ‘services’.

roles

(Optional) List of roles assigned to heat user. Defaults to [‘admin’]

system_scope

(Optional) Scope for system operations. Defaults to ‘all’

system_roles

(Optional) List of system roles assigned to heat user. Defaults to []

public_url

(optional) The endpoint’s public url. (Defaults to ‘127.0.0.1:8000/v1’) This url should not contain any trailing ‘/’.

admin_url

(optional) The endpoint’s admin url. (Defaults to ‘127.0.0.1:8000/v1’) This url should not contain any trailing ‘/’.

internal_url

(optional) The endpoint’s internal url. (Defaults to ‘127.0.0.1:8000/v1’) This url should not contain any trailing ‘/’.

Examples

class { 'heat::keystone::auth_cfn':
  public_url   => 'https://10.0.0.10:8000/v1',
  internal_url => 'https://10.0.0.11:8000/v1',
  admin_url    => 'https://10.0.0.11:8000/v1',
}

Parameters:

  • password (Any) (defaults to: false)
  • email (Any) (defaults to: 'heat-cfn@localhost')
  • auth_name (Any) (defaults to: 'heat-cfn')
  • service_name (Any) (defaults to: 'heat-cfn')
  • service_description (Any) (defaults to: 'OpenStack Cloudformation Service')
  • service_type (Any) (defaults to: 'cloudformation')
  • region (Any) (defaults to: 'RegionOne')
  • tenant (Any) (defaults to: 'services')
  • roles (Any) (defaults to: ['admin'])
  • system_scope (Any) (defaults to: 'all')
  • system_roles (Any) (defaults to: [])
  • configure_endpoint (Any) (defaults to: true)
  • configure_service (Any) (defaults to: true)
  • configure_user (Any) (defaults to: true)
  • configure_user_role (Any) (defaults to: true)
  • public_url (Any) (defaults to: 'http://127.0.0.1:8000/v1')
  • admin_url (Any) (defaults to: 'http://127.0.0.1:8000/v1')
  • internal_url (Any) (defaults to: 'http://127.0.0.1:8000/v1')


85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'manifests/keystone/auth_cfn.pp', line 85

class heat::keystone::auth_cfn (
  $password             = false,
  $email                = 'heat-cfn@localhost',
  $auth_name            = 'heat-cfn',
  $service_name         = 'heat-cfn',
  $service_description  = 'OpenStack Cloudformation Service',
  $service_type         = 'cloudformation',
  $region               = 'RegionOne',
  $tenant               = 'services',
  $roles                = ['admin'],
  $system_scope         = 'all',
  $system_roles         = [],
  $configure_endpoint   = true,
  $configure_service    = true,
  $configure_user       = true,
  $configure_user_role  = true,
  $public_url           = 'http://127.0.0.1:8000/v1',
  $admin_url            = 'http://127.0.0.1:8000/v1',
  $internal_url         = 'http://127.0.0.1:8000/v1',
) {

  include heat::deps

  validate_legacy(String, 'validate_string', $password)

  Keystone::Resource::Service_identity['heat-cfn'] -> Anchor['heat::service::end']

  keystone::resource::service_identity { 'heat-cfn':
    configure_user      => $configure_user,
    configure_user_role => $configure_user_role,
    configure_endpoint  => $configure_endpoint,
    configure_service   => $configure_service,
    service_type        => $service_type,
    service_description => $service_description,
    service_name        => $service_name,
    region              => $region,
    auth_name           => $auth_name,
    password            => $password,
    email               => $email,
    tenant              => $tenant,
    roles               => $roles,
    system_scope        => $system_scope,
    system_roles        => $system_roles,
    public_url          => $public_url,
    admin_url           => $admin_url,
    internal_url        => $internal_url,
  }

}