Merge "Remove per-region handling"

This commit is contained in:
Jenkins 2016-09-12 13:40:17 +00:00 committed by Gerrit Code Review
commit 99cca40964
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ class infracloud::bifrost (
$ironic_db_password,
$ironic_inventory,
$mysql_password,
$region,
$region = 'vanilla',
$ssh_private_key,
$ssh_public_key,
$vlan,
@ -62,12 +62,12 @@ class infracloud::bifrost (
file { '/etc/bifrost/bifrost_global_vars':
ensure => present,
content => template("infracloud/bifrost/bifrost_global_vars.${region}.erb"),
content => template('infracloud/bifrost/bifrost_global_vars.erb'),
}
file { '/opt/stack/baremetal.json':
ensure => file,
content => template("infracloud/bifrost/inventory.${region}.json.erb"),
content => template('infracloud/bifrost/inventory.json.erb'),
require => Vcsrepo['/opt/stack/bifrost'],
}