Skip to content

Commit

Permalink
Check if openstack application credentials are empty since they alway…
Browse files Browse the repository at this point in the history
…s exists (kubernetes-sigs#8021)
  • Loading branch information
Hugo Blom authored and LuckySB committed Oct 23, 2021
1 parent 67f38c1 commit af240d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Global]
auth-url="{{ external_openstack_auth_url }}"
{% if external_openstack_application_credential_id is not defined and external_openstack_application_credential_name is not defined %}
{% if external_openstack_application_credential_id == "" and external_openstack_application_credential_name == "" %}
username="{{ external_openstack_username }}"
password="{{ external_openstack_password }}"
{% endif %}
Expand Down

0 comments on commit af240d3

Please sign in to comment.