
The clouds.yaml file includes credentials to access OpenStack APIs, so differences should be hidden from output. Change-Id: I7728df4bae694fe560e2e2b90ee4bb480f03a43c
77 lines
1.8 KiB
Puppet
77 lines
1.8 KiB
Puppet
# == Class: openstacklib::clouds
|
|
#
|
|
# Generates clouds.yaml for openstack CLI
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*username*]
|
|
# (Required) The name of the keystone user.
|
|
#
|
|
# [*password*]
|
|
# (Required) Password of the keystone user.
|
|
#
|
|
# [*auth_url*]
|
|
# (Required) The URL to use for authentication.
|
|
#
|
|
# [*path*]
|
|
# (Optional) Path to the clouds.yaml file.
|
|
# Defaults to $name
|
|
#
|
|
# [*user_domain_name*]
|
|
# (Optional) Name of domain for $username.
|
|
# Defaults to 'Default'
|
|
#
|
|
# [*project_name*]
|
|
# (Optional) The name of the keystone project.
|
|
# Defaults to undef
|
|
#
|
|
# [*project_domain_name*]
|
|
# (Optional) Name of domain for $project_name.
|
|
# Defaults to 'Default'
|
|
#
|
|
# [*system_scope*]
|
|
# (Optional) Scope for system operations.
|
|
# Defaults to undef
|
|
#
|
|
# [*interface*]
|
|
# (Optional) Determine the endpoint to be used.
|
|
# Defaults to undef
|
|
#
|
|
# [*region_name*]
|
|
# (Optional) The region in which the service can be found.
|
|
# Defaults to undef
|
|
#
|
|
# [*api_versions*]
|
|
# (Optional) Hash of service type and version to determine API version
|
|
# for that service to use.
|
|
# Example: { 'identity' => '3', 'compute' => '2.latest' }
|
|
# Defaults to {}
|
|
#
|
|
define openstacklib::clouds(
|
|
$username,
|
|
$password,
|
|
$auth_url,
|
|
$path = $name,
|
|
$user_domain_name = 'Default',
|
|
$project_name = undef,
|
|
$project_domain_name = 'Default',
|
|
$system_scope = undef,
|
|
$interface = undef,
|
|
$region_name = undef,
|
|
$api_versions = {},
|
|
) {
|
|
|
|
if !$project_name and !$system_scope {
|
|
fail('One of project_name and system_scope should be set')
|
|
}
|
|
|
|
file { $path:
|
|
ensure => 'present',
|
|
mode => '0600',
|
|
owner => 'root',
|
|
group => 'root',
|
|
content => template('openstacklib/clouds.yaml.erb'),
|
|
show_diff => false,
|
|
}
|
|
}
|