9cff9d2142
Storyboard.conf now accepts authorization_code_ttl and a list of valid_oauth_clients. Change-Id: I29495a0b640c3ca097cca8c17349df5cc42388de
23 lines
527 B
Puppet
23 lines
527 B
Puppet
node 'puppet-storyboard-precise64' {
|
|
class { 'storyboard':
|
|
mysql_user_password => 'storyboard',
|
|
rabbitmq_user_password => 'storyboard',
|
|
hostname => '192.168.99.22',
|
|
|
|
valid_oauth_clients => [
|
|
'192.168.99.22'
|
|
],
|
|
}
|
|
}
|
|
|
|
node 'puppet-storyboard-trusty64' {
|
|
class { 'storyboard':
|
|
mysql_user_password => 'storyboard',
|
|
rabbitmq_user_password => 'storyboard',
|
|
hostname => '192.168.99.23',
|
|
|
|
valid_oauth_clients => [
|
|
'192.168.99.23'
|
|
],
|
|
}
|
|
} |