Skip to content

Commit

Permalink
Add the option to add further Password auth config. (#628)
Browse files Browse the repository at this point in the history
* Add the option to add further Password auth config.

* Loop moved out of the authenticators

* update method of adding extra authenticators

* Edit to discription and format.

* Add azimuth_authenticators_extra example

* Update spacing between settings

* Update indenting

---------

Co-authored-by: Scott Davidson <[email protected]>
  • Loading branch information
MaxBed4d and sd109 authored Nov 5, 2024
1 parent 565ed7d commit d967213
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion roles/azimuth/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,19 @@ azimuth_authenticator_federated_identity_providers:
provider: "{{ azimuth_authenticator_federated_provider }}"
protocol: "{{ azimuth_authenticator_federated_protocol }}"
# List of authenticators in the order in which they should appear in the form

# Additional authenticators to include
azimuth_authenticators_extra: []
# Example for authenticating with an additional Keystone domain:
# - hidden: false
# label: "What shows up on login dropdown menu"
# name: a_unique_name
# type: openstack-password
# openstackPassword:
# authUrl: https://keystone.openstack.example.com/v3
# domain: my-domain
# verifySsl: true

azimuth_authenticators: >-
{{-
[] +
Expand Down Expand Up @@ -195,7 +208,7 @@ azimuth_authenticators: >-
]
if azimuth_authenticator_appcred_enabled
else []
)
) + azimuth_authenticators_extra
}}
Expand Down

0 comments on commit d967213

Please sign in to comment.