Files
puppet-swift/manifests/proxy/s3token.pp
Matt Fischer bded649fc2 Remove unused keystone::python reference
This class doesn't do anything useful, the providers are doing the work.

Change-Id: I1b6b506acba6510900da633f7eb2ef0f2189a4a3
2016-02-23 04:19:22 -07:00

43 lines
761 B
Puppet

# == Class: swift::proxy::s3token
#
# Configure swift s3token.
#
# === Parameters
#
# [*auth_host*]
# (optional) The keystone host
# Defaults to 127.0.0.1
#
# [*auth_port*]
# (optional) The Keystone client API port
# Defaults to 5000
#
# [*auth_protocol*]
# (optional) http or https
# Defaults to http
#
# == Dependencies
#
# == Examples
#
# == Authors
#
# Francois Charlier fcharlier@ploup.net
#
# == Copyright
#
# Copyright 2012 eNovance licensing@enovance.com
#
class swift::proxy::s3token(
$auth_host = '127.0.0.1',
$auth_port = '35357',
$auth_protocol = 'http'
) {
concat::fragment { 'swift_s3token':
target => '/etc/swift/proxy-server.conf',
content => template('swift/proxy/s3token.conf.erb'),
order => '28',
}
}