You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
During initial setup it is common to have many new hosts. For each of these one has to manually accept their keys. Currently it is possible to set
ansible_ssh_common_args
to
-o StrictHostKeyChecking=accept-new
. However as there is an explicit option for this it would be better if that accepted it.
Issue Type
Feature Idea
Component Name
Additional Information
Currently:
- hosts: rpisvars:
ansible_password: foobaransible_ssh_common_args: -o StrictHostKeyChecking=accept-new# more portable, less secure:host_key_checking: notasks:
- name: Bootstrapping...