LoginSignup
0
0

More than 1 year has passed since last update.

【ルール説明・basic】deprecated-local-action

Posted at

こちらの記事は Ansible lint Advent Calendar 2022 カレンダー2 4日目の記事になります。

今回はルール deprecated-local-action について説明します。

deprecated-local-action

deprecated-local-action はキーlocal_actionが利用されている時にdelegate_to: localhostに変更するように警告を出力します。

問題のあるコード

---
- name: Task example
  local_action: # <-- 非推奨の記述方法
    module: boto3_facts

修正されたコード

- name: Task example
    boto3_facts:
  delegate_to: localhost # <-- ローカルホストで処理を実行する際の標準的な記述方法

参考サイト

0
0
0

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
0
0