Merge "Create infra domain and infracloud tenants below it"

This commit is contained in:
Jenkins 2016-02-23 19:44:50 +00:00 committed by Gerrit Code Review
commit 5b32424d99

View File

@ -39,13 +39,22 @@ class openstack_project::infracloud::controller (
controller_public_address => $controller_public_address,
}
keystone_domain { 'infra':
ensure => present,
enabled => true,
}
keystone_tenant { 'openstackci':
ensure => present,
enabled => true,
domain => 'infra',
require => Keystone_domain['infra'],
}
keystone_tenant { 'openstackjenkins':
ensure => present,
enabled => true,
domain => 'infra',
require => Keystone_domain['infra'],
}
}