Merge "Added Valid OAuth client configuration to storyboard manifest."
This commit is contained in:
commit
ae8d1ec90f
@ -424,7 +424,11 @@ node 'storyboard.openstack.org' {
|
||||
rabbitmq_password => hiera('storyboard_rabbit_password', 'XXX'),
|
||||
ssl_cert_file_contents => hiera('storyboard_ssl_cert_file_contents', 'XXX'),
|
||||
ssl_key_file_contents => hiera('storyboard_ssl_key_file_contents', 'XXX'),
|
||||
ssl_chain_file_contents => hiera('storyboard_ssl_chain_file_contents', 'XXX')
|
||||
ssl_chain_file_contents => hiera('storyboard_ssl_chain_file_contents', 'XXX'),
|
||||
valid_oauth_clients => [
|
||||
$::fqdn,
|
||||
'docs-draft.openstack.org',
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -12,6 +12,7 @@ class openstack_project::storyboard(
|
||||
$ssl_chain_file_contents = undef,
|
||||
$openid_url = 'https://login.launchpad.net/+openid',
|
||||
$project_config_repo = '',
|
||||
$valid_oauth_clients = [],
|
||||
) {
|
||||
|
||||
class { 'project_config':
|
||||
@ -44,6 +45,7 @@ class openstack_project::storyboard(
|
||||
'https://storyboard.openstack.org',
|
||||
'http://docs-draft.openstack.org',
|
||||
],
|
||||
valid_oauth_clients => $valid_oauth_clients,
|
||||
cors_max_age => 3600,
|
||||
openid_url => $openid_url,
|
||||
mysql_host => $mysql_host,
|
||||
|
Loading…
x
Reference in New Issue
Block a user