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) (kubernetes-sigs#8038)

Co-authored-by: Hugo Blom <[email protected]>
  • Loading branch information
oomichi and Hugo Blom authored Sep 30, 2021
1 parent 9fafe98 commit 45018ac
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 45018ac

Please sign in to comment.