commit | 96465fa0af4b2f08d01b6f9c5a85a0c37b9071dc | [log] [tgz] |
---|---|---|
author | Filip Pytloun <filip@pytloun.cz> | Wed Dec 21 14:12:22 2016 +0100 |
committer | Filip Pytloun <filip@pytloun.cz> | Wed Dec 21 14:12:22 2016 +0100 |
tree | ffa8d407bb5c04c6e4d3189cf69c72bddc2d1410 | |
parent | f28732ee724ba29ba83063b5c850f74a58ee6077 [diff] |
Fix escape
diff --git a/jenkins/client/credential.sls b/jenkins/client/credential.sls index d58d036..29769aa 100644 --- a/jenkins/client/credential.sls +++ b/jenkins/client/credential.sls
@@ -8,6 +8,7 @@ - desc: {{ cred.get('desc', '') }} - scope: {{ cred.get('scope','GLOBAL') }} {%- if cred.key is defined %} - - key: "{{ cred.get('key','') }}" + - key: | + {{ cred.get('key','') }} {%- endif %} {% endfor %}