2020-08-18 11:57:53 +02:00
|
|
|
---
|
2020-08-31 19:40:47 +02:00
|
|
|
- hosts: all
|
2020-08-18 11:57:53 +02:00
|
|
|
become: yes
|
|
|
|
gather_facts: false
|
|
|
|
max_fail_percentage: 20%
|
|
|
|
|
|
|
|
roles:
|
2020-08-29 20:57:14 +02:00
|
|
|
- { role: robertdebock.bootstrap, tags: "bootstrap" }
|
2020-08-18 11:57:53 +02:00
|
|
|
- { role: nickjj.ansible-user, tags: "ansible-user" }
|
|
|
|
|
|
|
|
vars:
|
2020-09-26 14:41:10 +02:00
|
|
|
### reobertdebock.bootstrap
|
|
|
|
bootstrap_user: mg
|
|
|
|
bootstrap_wait_for_host: no
|
2020-10-06 14:19:52 +02:00
|
|
|
bootstrap_timeout: 1
|
|
|
|
bootstrap_retries: 1
|
2020-08-18 11:57:53 +02:00
|
|
|
### fuer rolle nickjj.ansible-user
|
|
|
|
user_name: "ansible-user"
|
|
|
|
user_generate_ssh_key: true
|
|
|
|
user_local_ssh_key_path: "~/.ssh/id_rsa.pub"
|
|
|
|
user_enable_passwordless_sudo: True
|
2020-09-02 13:18:27 +02:00
|
|
|
### ansible
|
2020-09-30 13:33:45 +02:00
|
|
|
ansible_password: "hallowelt"
|
|
|
|
ansible_become_password: "hallowelt"
|
2020-08-18 11:57:53 +02:00
|
|
|
ansible_ssh_common_args: "'-o StrictHostKeyChecking=no'"
|