Added cloud storage config

Change-Id: I6a9c67da18beacf4b6f67ed2ace8371ba3478fd8
Signed-off-by: smarcet <smarcet@gmail.com>
This commit is contained in:
smarcet 2020-09-21 09:25:11 -03:00
parent 437b6b776e
commit eb6547e446
2 changed files with 18 additions and 1 deletions

View File

@ -112,6 +112,13 @@ class openstackid (
$message_broker_ssl_client_key_file = '/etc/rabbitmq-client-ssl/client-key.pem',
$message_broker_ssl_client_key_file_contents = '',
$message_broker_enabled = false,
$cloud_storage_base_url = '',
$cloud_storage_auth_url = '',
$cloud_storage_app_credential_id = '',
$cloud_storage_app_credential_secret = '',
$cloud_storage_project_name = '',
$cloud_storage_region = '',
$cloud_storage_container = '',
) {
# php5 packages needed for openid server

View File

@ -84,4 +84,14 @@ RABBITMQ_SSL=<%= @message_broker_ssl_enabled %>
RABBITMQ_SSL_CAFILE==<%= @message_broker_ssl_ca_file %>
RABBITMQ_SSL_LOCALCERT=<%= @message_broker_ssl_client_cert_file %>
RABBITMQ_SSL_LOCALKEY=<%= @message_broker_ssl_client_key_file %>
ENABLE_MESSAGE_BROKER=<%= @message_broker_enabled %>
ENABLE_MESSAGE_BROKER=<%= @message_broker_enabled %>
# CLOUD STORAGE
CLOUD_STORAGE_BASE_URL=<%= @cloud_storage_base_url %>
CLOUD_STORAGE_AUTH_URL=<%= @cloud_storage_auth_url %>
CLOUD_STORAGE_APP_CREDENTIAL_ID=<%= @cloud_storage_app_credential_id %>
CLOUD_STORAGE_APP_CREDENTIAL_SECRET=<%= @cloud_storage_app_credential_secret %>
CLOUD_STORAGE_PROJECT_NAME=<%= @cloud_storage_project_name %>
CLOUD_STORAGE_REGION=<%= @cloud_storage_region %>
CLOUD_STORAGE_CONTAINER=<%= @cloud_storage_container %>