Puppet Class: swift::auth_file

Defined in:
manifests/auth_file.pp

Overview

Class: swift::auth_file

Create a RC credentials file for Swift v1 authentication

Parameters:

admin_tenant

(required) The name of the tenant used to authenticate

admin_user

(optional) The name of the user to create in keystone for use by the ironic services Defaults to ‘admin’

auth_url

(optional) The authentication URL Defaults to ‘127.0.0.1:5000/v3/’

admin_password

(required) The password for the swift user

Parameters:

  • admin_tenant (Any)
  • admin_password (Any)
  • admin_user (Any) (defaults to: 'admin')
  • auth_url (Any) (defaults to: 'http://127.0.0.1:5000/v3/')


21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'manifests/auth_file.pp', line 21

class swift::auth_file (
  $admin_tenant,
  $admin_password,
  $admin_user      = 'admin',
  $auth_url        = 'http://127.0.0.1:5000/v3/'
) {

  include swift::deps

  file { '/root/swiftrc':
    ensure  => file,
    owner   => 'root',
    group   => 'root',
    mode    => '0600',
    tag     => 'swift-file',
    content =>
  "
  export ST_USER=${admin_tenant}:${admin_user}
  export ST_KEY=${admin_password}
  export ST_AUTH=${auth_url}
  ",
  }
}