Go to file
smarcet ca788b2a8b Fixed PIP version
fixed pip install to 20.3.4 bc latest one
(21.0.0) breaks python build

Change-Id: I0266509ad07d0d28c509b446f40cabc7ca7ab8ef
Signed-off-by: smarcet <smarcet@gmail.com>
2021-01-27 12:13:54 -03:00
2021-01-27 12:13:54 -03:00
2020-09-22 00:27:13 -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