1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Ansible Tips: {{ lookup('file','FILENAME') }}にはbecome: trueは及ばない

Last updated at Posted at 2025-07-05

備忘

タイトル通り^^;

なぜファイルが読めないのか一瞬悩んだので。
jinja2展開にはbecome: trueは影響しないということですね。

類例

- become: true
  copy:
     src: LOCAL_FILE_NAME
     dest: REMOTE_FILE_NAME

におけるLOCAL_FILE_NAME読み込みにもbecome: trueが及ばなかった。この場合、become:はリモートでの権限ですね。

1
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?