openscanhub: try to fix key format

Private key is missing newline character at the end which is causing
failures with ssh. This is an attempt to fix that.

Signed-off-by: Siteshwar Vashisht <svashisht@redhat.com>
This commit is contained in:
Siteshwar Vashisht 2024-03-13 16:15:31 +01:00
parent 80f63933b5
commit b5b5535c7e

View file

@ -4,5 +4,5 @@ kind: Secret
metadata:
name: aws-openscanhub-key
data:
id_rsa: {{ lookup('file', private+'/files/openscanhub/openscanhub.key') | b64encode }}
id_rsa.pub: {{ lookup('file', private+'/files/openscanhub/openscanhub.key.pub') | b64encode }}
id_rsa: "{{ lookup('file', private+'/files/openscanhub/openscanhub.key') | b64encode }}"
id_rsa.pub: "{{ lookup('file', private+'/files/openscanhub/openscanhub.key.pub') | b64encode }}"