ansible/roles/common/tasks/ansible.yml
2020-10-17 01:00:06 -05:00

12 lines
419 B
YAML

#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
- name: configure ansible user
block:
- name: create ansible user
user: name=ansible password_lock=yes
- name: configure ansible user keys
authorized_key: user=ansible manage_dir=yes key={{ common_ansible_pubkey }}
- name: configure ansible user sudo
lineinfile: path=/etc/sudoers line="ansible ALL=(ALL:ALL) NOPASSWD:ALL"
become: yes