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:
parent
1189cf74fe
commit
5070b178e4
@ -39,13 +39,22 @@ class openstack_project::infracloud::controller (
|
|||||||
controller_public_address => $controller_public_address,
|
controller_public_address => $controller_public_address,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
keystone_domain { 'infra':
|
||||||
|
ensure => present,
|
||||||
|
enabled => true,
|
||||||
|
}
|
||||||
|
|
||||||
keystone_tenant { 'openstackci':
|
keystone_tenant { 'openstackci':
|
||||||
ensure => present,
|
ensure => present,
|
||||||
enabled => true,
|
enabled => true,
|
||||||
|
domain => 'infra',
|
||||||
|
require => Keystone_domain['infra'],
|
||||||
}
|
}
|
||||||
|
|
||||||
keystone_tenant { 'openstackjenkins':
|
keystone_tenant { 'openstackjenkins':
|
||||||
ensure => present,
|
ensure => present,
|
||||||
enabled => true,
|
enabled => true,
|
||||||
|
domain => 'infra',
|
||||||
|
require => Keystone_domain['infra'],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user