Merge "Replace jinja for with filter expression in helm deploy call"
[oom/offline-installer.git] / tools / cicdansible / group_vars / instances.yml
1 #Configuration for all instances.
2 #User to log in to instances as.
3 ansible_user: root
4 #Whether to become root using sudo or such like, no by default.
5 ansible_become: no
6 #Private key to use to access instances.
7 ansible_private_key_file: "{{ lookup('env', 'HOME') }}/.ssh/id_rsa"
8 #Arguments to skip host key verification for instances, modify only if you know what you are doing.
9 disable_ssh_host_auth: "-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
10 ansible_ssh_common_args: "{{ disable_ssh_host_auth }}"
11