Create infra domain and infracloud tenants below it

We agreed to put the infracloud tenants under infra domain.

Change-Id: I69f9629c5974f77966440bc84833de67416a731c
This commit is contained in:
Ricardo Carrillo Cruz 2016-02-23 18:53:32 +01:00
parent 1189cf74fe
commit 5070b178e4

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'],
}
}