mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-21 14:58:02 +01:00
10 lines
384 B
YAML
10 lines
384 B
YAML
---
|
|
servers:
|
|
hosts:
|
|
ubuntu:
|
|
ansible_host: "{{ lookup('env', 'DEPLOY_HOST') }}"
|
|
ansible_port: "{{ lookup('env', 'DEPLOY_PORT') }}"
|
|
ansible_user: "{{ lookup('env', 'DEPLOY_USERNAME') }}"
|
|
ansible_ssh_private_key_file: "{{ lookup('env', 'KEY_FILE') }}"
|
|
ansible_python_interpreter: auto_silent
|
|
ansible_ssh_common_args: -o StrictHostKeyChecking=no
|