blob: 0e7144e8320b7510d4dd77dbe5f6548f3769bd71 [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
Mohammed Naser58052682025-02-05 14:03:20 -050022# Class name to use for the Ingress
23keystone_ingress_class_name: "{{ atmosphere_ingress_class_name }}"
24
guilhermesteinmullerd5340622023-01-24 17:57:10 +000025# List of annotations to apply to the Ingress
Mohammed Naser2145fc32023-01-29 23:23:03 +000026keystone_ingress_annotations: {}
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020027
28# The following set of variables can be used for simple setups where you can
29# only need a single domain and realm. You can use the `keystone_domains`
30# variable to configure more complex setups.
31keystone_keycloak_server_url: "https://{{ keycloak_host }}"
32keystone_keycloak_server_internal_url: http://keycloak.auth-system.svc
33keystone_keycloak_user_realm_name: master
34keystone_keycloak_admin_client_id: admin-cli
35keystone_keycloak_admin_user: admin
36keystone_keycloak_admin_password: "{{ keycloak_admin_password }}"
37keystone_keycloak_realm: atmosphere
38keystone_keycloak_realm_name: Atmosphere
Mohammed Naser14edc542025-02-05 15:25:25 -050039# keystone_keycloak_realm_default_password_policy:
40# keystone_keycloak_realm_default_brute_force_protected:
41# keystone_keycloak_realm_default_brute_force_failure_factor:
42# keystone_keycloak_realm_default_brute_force_wait_increment_seconds:
43# keystone_keycloak_realm_default_brute_force_max_failure_wait_seconds:
44# keystone_keycloak_realm_default_brute_force_max_delta_time_seconds:
45# keystone_keycloak_realm_default_minimum_quick_login_wait_seconds:
46# keystone_keycloak_realm_default_quick_login_check_milli_seconds:
Mohammed Naserfb6ceb72025-02-05 15:32:27 -050047# keystone_keycloak_realm_default_totp_default_action:
Mohammed Naser14edc542025-02-05 15:25:25 -050048
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020049keystone_keycloak_client_id: keystone
50# keystone_keycloak_client_secret:
51keystone_keycloak_scopes: "openid email profile"
52
53# This variable can be used for more complex setups that require multiple
54# domains that are mapped to multiple realms. If you are looking to use a
55# single domain and realm, you can skip this section.
56keystone_domains:
57 - name: "{{ keystone_keycloak_realm }}" # Domain name
58 label: "{{ keystone_keycloak_realm_name }}" # Realm display name + Horizon label
59 keycloak_server_url: "{{ keystone_keycloak_server_url }}" # Public Keycloak URL
60 keycloak_server_internal_url: "{{ keystone_keycloak_server_internal_url }}" # Internal Keycloak URL
61 keycloak_user_realm_name: "{{ keystone_keycloak_user_realm_name }}" # Keycloak realm name
62 keycloak_admin_client_id: "{{ keystone_keycloak_admin_client_id }}" # Keycloak admin client ID
63 keycloak_admin_user: "{{ keystone_keycloak_admin_user }}" # Keycloak admin username
64 keycloak_admin_password: "{{ keystone_keycloak_admin_password }}" # Keycloak admin password
65 keycloak_realm: "{{ keystone_keycloak_realm }}" # Keycloak realm name
66 keycloak_client_id: "{{ keystone_keycloak_client_id }}" # Keycloak client ID
67 keycloak_client_secret: "{{ keystone_keycloak_client_secret }}" # Keycloak client secret
68 keycloak_scopes: "{{ keystone_keycloak_scopes }}" # Keycloak scopes
69
70# Keystone OpenID Connect settings (defaults to Keycloak for Atmosphere)
71keystone_oidc_ssl_validate_server: "{{ (cluster_issuer_type == 'self-signed') | ternary('Off', 'On') }}"
72keystone_oidc_crypto_passphrase: "{{ undef('You must specify a Keystone OIDC client secret using keystone_oidc_crypto_passphrase') }}"
73keystone_oidc_redirect_uri: "https://{{ openstack_helm_endpoints_keystone_api_host }}/v3/auth/OS-FEDERATION/identity_providers/redirect"
74keystone_oidc_redirect_urls_allowed:
75 - "^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]
76 - "^https://{{ openstack_helm_endpoints_horizon_api_host }}/auth/logout/$"