Hide differences when updating clouds.yaml

The clouds.yaml file includes credentials to access OpenStack APIs, so
differences should be hidden from output.

Change-Id: I7728df4bae694fe560e2e2b90ee4bb480f03a43c
(cherry picked from commit b109d66934)
This commit is contained in:
Takashi Kajinami 2022-06-24 01:13:41 +09:00
parent 369c516bd6
commit a034d8a17f
1 changed files with 6 additions and 5 deletions

View File

@ -66,10 +66,11 @@ define openstacklib::clouds(
}
file { $path:
ensure => 'present',
mode => '0600',
owner => 'root',
group => 'root',
content => template('openstacklib/clouds.yaml.erb'),
ensure => 'present',
mode => '0600',
owner => 'root',
group => 'root',
content => template('openstacklib/clouds.yaml.erb'),
show_diff => false,
}
}