Puppet Class: openstack::profile::auth_file
- Defined in:
- manifests/profile/auth_file.pp
Overview
The profile to install an OpenStack specific mysql server
2 3 4 5 6 7 8 9 |
# File 'manifests/profile/auth_file.pp', line 2
class openstack::profile::auth_file {
class { '::openstack::resources::auth_file':
admin_tenant => 'admin',
admin_password => hiera('openstack::keystone::admin_password'),
region_name => hiera('openstack::region'),
controller_node => hiera('openstack::controller::address::api'),
}
}
|