Go to file
smarcet b1e5b59a0a Removed stale config variables
removed all config variables related to
ss integration

Change-Id: Id57bbf6329a0aac9904fd317ce0e1d8628993aa3
Signed-off-by: smarcet <smarcet@gmail.com>
Depends-on: https://review.opendev.org/#/c/709529
2020-02-24 15:31:34 -03:00
2020-02-17 11:43:10 -03:00
2020-02-24 15:31:34 -03:00
2020-01-30 11:38:43 -03:00
2019-01-15 15:01:21 -03:00
2019-04-19 19:25:35 +00:00
2018-04-20 14:32:29 -04:00
2018-07-12 09:57:45 +02:00
2015-01-29 22:59:08 +00:00
2020-02-24 15:31:34 -03:00

OpenStack OpenStackId

OpenStackId is a single-sign-on service integrated with openstack.org profile database. Provides openid and oauth2 authentication for third party applications.

Quick Start

class { 'openstackid':
  site_admin_password      => 'adminpass',
  # openstackid application database
  id_mysql_host            => 'localhost',
  id_mysql_user            => 'openstackid',
  id_mysql_password        => 'password',
  id_db_name               => 'openstackid',
  # redis settings
  redis_port               => '6378',
  redis_host               => '127.0.0.1',
  redis_password           => 'password',
  # recaptcha service keys
  id_recaptcha_public_key  => $id_recaptcha_public_key,
  id_recaptcha_private_key => $id_recaptcha_private_key,
  id_recaptcha_template    => $id_recaptcha_template,
  # logging
  id_log_error_to_email    => $id_log_error_to_email,
  id_log_error_from_email  => $id_log_error_from_email,
  # laravel environment settings
  id_environment           => 'dev',
  # ssl configuration
  ssl_cert_file            => "/etc/ssl/certs/${::fqdn}.pem",
  ssl_key_file             => "/etc/ssl/private/${::fqdn}.key",
  ssl_chain_file           => '/etc/ssl/certs/intermediate.pem',
  ssl_cert_file_contents   => $ssl_cert_file_contents,
  ssl_key_file_contents    => $ssl_key_file_contents,
  ssl_chain_file_contents  => $ssl_chain_file_contents,
  # release to deploy
  openstackid_release      => '1.0.2',
}
Description
RETIRED, Puppet module to deploy openstackid
Readme 924 KiB