宛先セクションのためにwith_items
を実行するときに複数の連結を試みています。複数の変数と文字列をつなぐ可能性のある遊び方
今、それは次のようになります。
- name: create app except+lookup
copy: content="" dest="{{ dir.comp ~ '/config/con2dd/' ~ item.name ~ 'File.txt' }}" force=no group=devops owner=devops mode: 0755
with_items:
...
私が取得:
We could be wrong, but this one looks like it might be an issue with
missing quotes. Always quote template expression brackets when they
start a value. For instance:
with_items:
- {{ foo }}
Should be written as:
with_items:
- "{{ foo }}"
はアプローチのカップルをしようとしましたが、どれも働いて何かを生じませんでした。
変数を文字列と連結することはできますか?
この厳しい使い方はどちらも正しいです。ありがとう:) – Moshe