Use False for zuul_connections_ssh items

This is because the openstack.ssh role uses False with when statements,
otherwise we get errors with these keys are missing.

Change-Id: Iad35362b0c7f5d5862f17a919e23a8e291560c7d
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2019-01-17 15:22:40 -05:00
parent a5a7ebe8f5
commit eb2d859e87
1 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@
vars:
ssh_key_private_content: "{{ item.ssh_key_private_content }}"
ssh_key_private_dest: "{{ item.ssh_key_private_dest }}"
ssh_key_public_content: "{{ item.ssh_key_public_content }}"
ssh_key_public_content: "{{ item.ssh_key_public_content | default(False) }}"
ssh_key_public_dest: "{{ item.ssh_key_public_dest }}"
ssh_known_hosts_content: "{{ item.ssh_known_hosts_content | default(omit) }}"
ssh_known_hosts_content: "{{ item.ssh_known_hosts_content | default(False) }}"
ssh_user_name: "{{ item.ssh_user_name }}"
ssh_user_home: "{{ item.ssh_user_home }}"