28 lines
No EOL
1.2 KiB
YAML
28 lines
No EOL
1.2 KiB
YAML
opencloud_domain: "opencloud.local.test"
|
|
opencloud_admin_password: "admin"
|
|
opencloud_extra_hosts:
|
|
- "opencloud.local.test:host-gateway"
|
|
- "keycloak.local.test:host-gateway"
|
|
- "storage.local.test:192.168.56.11"
|
|
- "office.local.test:host-gateway"
|
|
|
|
# OIDC configuration (Keycloak)
|
|
opencloud_oidc_issuer: "https://keycloak.local.test/realms/vagrant"
|
|
opencloud_oidc_client_id: "opencloud"
|
|
opencloud_oidc_client_secret: "opencloud-secret-change-in-production"
|
|
opencloud_oidc_account_edit_url: "https://keycloak.local.test/realms/vagrant/account"
|
|
|
|
# S3 storage configuration using Garage
|
|
opencloud_use_s3_storage: true
|
|
opencloud_s3_endpoint: "http://{{ hostvars['backend']['garage_s3_domain'] }}"
|
|
opencloud_s3_access_key: "{{ lookup('digitalboard.core.garage_credentials', 'opencloud', host='backend')['key_id'] }}"
|
|
opencloud_s3_secret_key: "{{ lookup('digitalboard.core.garage_credentials', 'opencloud', host='backend')['secret_key'] }}"
|
|
opencloud_s3_bucket: "opencloud"
|
|
|
|
# Collabora integration
|
|
opencloud_collabora_domain: "office.local.test"
|
|
opencloud_wopi_domain: "wopi.opencloud.local.test"
|
|
|
|
# Allow OpenCloud to connect to Keycloak for OIDC discovery
|
|
opencloud_csp_extra_connect_src:
|
|
- "https://keycloak.local.test/" |