Fix test if openstack_cacert is a base64 string (#6421)

This commit is contained in:
Florian Ruynat 2020-07-30 22:15:17 +02:00 committed by GitHub
parent 3550e3c145
commit a78e861a89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@
- name: Test if openstack_cacert is a base64 string - name: Test if openstack_cacert is a base64 string
set_fact: set_fact:
openstack_cacert_is_base64: "{% if openstack_cacert | b64decode %}true{% else %}false{% endif %}" openstack_cacert_is_base64: "{% if openstack_cacert | search ('^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)?$') %}true{% else %}false{% endif %}"
when: when:
- cloud_provider is defined - cloud_provider is defined
- cloud_provider == 'openstack' - cloud_provider == 'openstack'