私は次のことをしたい:
- lineinfile:
dest: "file{{ item }}.properties"
line: "port: {{ port_list[item - 1] }}"
with_sequence: start=1 end={{ nb_process }}
各プロパティ ファイルに挿入するポートを含む port_list 変数があります。見返りに次のエラーがあります。
unsupported operand type(s) for -: 'unicode' and 'int'
何か案が ?私も試してみました
line: "port: {{ port_list[(item - 1)|int] }}"
これまでのところ成功なし。