blob: 40ca892d247c9bd0238536a6be077214d2e37a72 [file] [log] [blame]
guilhermesteinmullerd5340622023-01-24 17:57:10 +00001# Copyright (c) 2023 VEXXHOST, Inc.
Mohammed Naserab033e12022-03-13 21:07:28 -04002#
guilhermesteinmullerd5340622023-01-24 17:57:10 +00003# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
okozachenko564a2ac2022-05-27 19:03:19 +10006#
guilhermesteinmullerd5340622023-01-24 17:57:10 +00007# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
Mohammed Naser2145fc32023-01-29 23:23:03 +000015keystone_helm_release_name: keystone
Mohammed Naser574d6502023-03-21 23:34:48 +000016keystone_helm_chart_path: "../../charts/keystone/"
Mohammed Naser2145fc32023-01-29 23:23:03 +000017keystone_helm_chart_ref: /usr/local/src/keystone
guilhermesteinmullerd5340622023-01-24 17:57:10 +000018
Mohammed Naser2145fc32023-01-29 23:23:03 +000019keystone_helm_release_namespace: openstack
20keystone_helm_values: {}
guilhermesteinmullerd5340622023-01-24 17:57:10 +000021
22# List of annotations to apply to the Ingress
Mohammed Naser2145fc32023-01-29 23:23:03 +000023keystone_ingress_annotations: {}
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020024
25# The following set of variables can be used for simple setups where you can
26# only need a single domain and realm. You can use the `keystone_domains`
27# variable to configure more complex setups.
28keystone_keycloak_server_url: "https://{{ keycloak_host }}"
29keystone_keycloak_server_internal_url: http://keycloak.auth-system.svc
30keystone_keycloak_user_realm_name: master
31keystone_keycloak_admin_client_id: admin-cli
32keystone_keycloak_admin_user: admin
33keystone_keycloak_admin_password: "{{ keycloak_admin_password }}"
34keystone_keycloak_realm: atmosphere
35keystone_keycloak_realm_name: Atmosphere
36keystone_keycloak_client_id: keystone
37# keystone_keycloak_client_secret:
38keystone_keycloak_scopes: "openid email profile"
39
40# This variable can be used for more complex setups that require multiple
41# domains that are mapped to multiple realms. If you are looking to use a
42# single domain and realm, you can skip this section.
43keystone_domains:
44 - name: "{{ keystone_keycloak_realm }}" # Domain name
45 label: "{{ keystone_keycloak_realm_name }}" # Realm display name + Horizon label
46 keycloak_server_url: "{{ keystone_keycloak_server_url }}" # Public Keycloak URL
47 keycloak_server_internal_url: "{{ keystone_keycloak_server_internal_url }}" # Internal Keycloak URL
48 keycloak_user_realm_name: "{{ keystone_keycloak_user_realm_name }}" # Keycloak realm name
49 keycloak_admin_client_id: "{{ keystone_keycloak_admin_client_id }}" # Keycloak admin client ID
50 keycloak_admin_user: "{{ keystone_keycloak_admin_user }}" # Keycloak admin username
51 keycloak_admin_password: "{{ keystone_keycloak_admin_password }}" # Keycloak admin password
52 keycloak_realm: "{{ keystone_keycloak_realm }}" # Keycloak realm name
53 keycloak_client_id: "{{ keystone_keycloak_client_id }}" # Keycloak client ID
54 keycloak_client_secret: "{{ keystone_keycloak_client_secret }}" # Keycloak client secret
55 keycloak_scopes: "{{ keystone_keycloak_scopes }}" # Keycloak scopes
56
57# Keystone OpenID Connect settings (defaults to Keycloak for Atmosphere)
58keystone_oidc_ssl_validate_server: "{{ (cluster_issuer_type == 'self-signed') | ternary('Off', 'On') }}"
59keystone_oidc_crypto_passphrase: "{{ undef('You must specify a Keystone OIDC client secret using keystone_oidc_crypto_passphrase') }}"
60keystone_oidc_redirect_uri: "https://{{ openstack_helm_endpoints_keystone_api_host }}/v3/auth/OS-FEDERATION/identity_providers/redirect"
61keystone_oidc_redirect_urls_allowed:
62 - "^https://{{ openstack_helm_endpoints_keystone_api_host }}/v3/auth/OS-FEDERATION/identity_providers/({{ keystone_domains | map(attribute='name') | join('|') }})/protocols/openid/websso" # noqa: yaml[line-length]
63 - "^https://{{ openstack_helm_endpoints_horizon_api_host }}/auth/logout/$"