Write all-clouds.yaml to disk

We have had an all-clouds.yaml file that was not being managed on disk
by puppet. Actually apply it to disk so that the template ends up on the
puppetmaster as expected.

Change-Id: I0136cab7c03b1932be5b24ff2e93ea8adb84c20d
This commit is contained in:
Clark Boylan 2016-02-23 08:24:20 -08:00
parent f7cb9c3108
commit db20a4cfdf

View File

@ -128,6 +128,14 @@ class openstack_project::puppetmaster (
content => template('openstack_project/puppetmaster/ansible-clouds.yaml.erb'),
}
file { '/etc/openstack/all-clouds.yaml':
ensure => present,
owner => 'root',
group => 'root',
mode => '0600',
content => template('openstack_project/puppetmaster/all-clouds.yaml.erb'),
}
file { '/etc/openstack/infracloud_west_cacert.pem':
ensure => present,
owner => 'root',